/*
   CSS styling examples for the Vaadin app.
   Visit https://vaadin.com/docs/flow/theme/theming-overview.html and
   https://vaadin.com/themes/lumo for more information.
*/

/* Example: CSS class name to center align the content . */
.centered-content {
    margin: 0 auto;
    max-width: 250px;
}
html {
  --lumo-primary-color: #023047;
  --lumo-primary-color-10pct: hsla(192, 70%, 43%, 0.09);
  --lumo-primary-text-color: #023047;
}
study-grid::part(locked-by-user) {
    background-color: var(--lumo-primary-color-10pct);
}
@media all and (max-width: 1000px){
    .patient-list-view.editing-patient .toolbar,
    .patient-list-view.editing-patient .patient-grid {
        display: none;
    }
    .study-list-view.editing-study .study-list-toolbar
    .study-list-view.editing-study .study-grid {
        display: none;
    }

}

a[highlight] {
    font-weight: bold;
    text-decoration: underline;
    padding: 10px
    width: 100%

}

