/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-gmg11wmrrx] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-gmg11wmrrx] {
    flex: 1;
    /* Allow the content column to shrink below its content's intrinsic width so
       wide tables scroll within it instead of clipping the whole page. */
    min-width: 0;
}

/* Make the content area a query container so .fit-heading can scale to the
   space actually available (excluding the sidebar). */
.content[b-gmg11wmrrx] {
    container-type: inline-size;
}

.sidebar[b-gmg11wmrrx] {
    background-image: linear-gradient(165deg, var(--navy-600) 0%, var(--navy) 55%, var(--navy-900) 100%);
    display: flex;
    flex-direction: column;
}

.sidebar-logo[b-gmg11wmrrx] {
    display: none;
}

    .sidebar-logo img[b-gmg11wmrrx] {
        display: block;
        width: 100%;
        max-width: 220px;
        height: auto;
    }

.top-row[b-gmg11wmrrx] {
    background-color: var(--surface-card);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-xs);
    justify-content: space-between;
    gap: 1rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    /* Adapt to the bar's OWN width (viewport minus the sidebar), not the viewport,
       so a half-width window collapses the badge/name just like a phone does.
       width:100% is required because inline-size containment otherwise shrink-wraps
       the bar instead of filling the main column. */
    container-type: inline-size;
    container-name: topbar;
    width: 100%;
}

.top-row-unit[b-gmg11wmrrx] { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }

/* Current unit shown as a frosted-glass mint badge with navy text (no label). */
.unit-badge[b-gmg11wmrrx] {
    background: rgba(168, 219, 221, 0.35);
    color: var(--bh-navy);
    border: 1px solid rgba(168, 219, 221, 0.6);
    backdrop-filter: blur(6px) saturate(160%);
    -webkit-backdrop-filter: blur(6px) saturate(160%);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    max-width: 32rem;
    /* Shrink (ellipsised) before the "Change unit" button when space is tight. */
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.unit-badge--none[b-gmg11wmrrx] {
    background: var(--bh-mint-tint);
    color: var(--bh-muted);
    font-weight: 500;
}

/* Full name on wide screens, short code (GS3/AGSU) on narrow — toggled below. */
.unit-badge-short[b-gmg11wmrrx] { display: none; }

.top-row-user[b-gmg11wmrrx] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    /* Allow the user block (and its name) to shrink rather than collide with the
       unit controls on the left. */
    min-width: 0;
}

.top-row-user-name[b-gmg11wmrrx] {
    color: var(--bh-navy);
    font-weight: 600;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-row-user .logout-form[b-gmg11wmrrx] { margin: 0; }

/* Shared pill button for the top bar — "Change unit" matches "Sign out". */
.top-bar-btn[b-gmg11wmrrx] {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--border-default);
    background: var(--surface-card);
    color: var(--bh-navy);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.3rem 0.95rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    /* The pill buttons stay whole; only the badge and name text shrink. */
    flex-shrink: 0;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.top-bar-btn:hover[b-gmg11wmrrx] {
    border-color: var(--bh-navy);
    background: var(--bh-mint-tint);
    color: var(--bh-navy);
    text-decoration: none;
}

    .top-row[b-gmg11wmrrx]  a {
        color: var(--bh-navy);
        font-weight: 500;
    }

    .top-row[b-gmg11wmrrx]  a, .top-row[b-gmg11wmrrx]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-gmg11wmrrx]  a:hover, .top-row[b-gmg11wmrrx]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-gmg11wmrrx]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-gmg11wmrrx] {
        justify-content: space-between;
    }

    .top-row[b-gmg11wmrrx]  a, .top-row[b-gmg11wmrrx]  .btn-link {
        margin-left: 0;
    }
}

/* These react to the top bar's own width (see container-type above), so they fire
   for a half-width desktop window with the sidebar visible — not just phones. */
@container topbar (max-width: 680px) {
    /* Swap the full unit name for its short code so it never gets cut off. */
    .unit-badge-full[b-gmg11wmrrx] { display: none; }
    .unit-badge-short[b-gmg11wmrrx] { display: inline; }
}

@container topbar (max-width: 470px) {
    /* Too tight even for the name; the unit is still shown in the page eyebrow. */
    .top-row-user-name[b-gmg11wmrrx] { display: none; }
}

@media (min-width: 641px) {
    .page[b-gmg11wmrrx] {
        flex-direction: row;
    }

    .sidebar[b-gmg11wmrrx] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .sidebar-logo[b-gmg11wmrrx] {
        display: block;
        margin-top: auto;
        padding: 1rem 1.25rem 1.5rem;
    }

    .top-row[b-gmg11wmrrx] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-gmg11wmrrx]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-gmg11wmrrx], article[b-gmg11wmrrx] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-gmg11wmrrx] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-gmg11wmrrx] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-865yt9jhvo] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-865yt9jhvo] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-865yt9jhvo] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.18);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.navbar-brand[b-865yt9jhvo] {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.01em;
    color: #fff;
}

.bi[b-865yt9jhvo] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-865yt9jhvo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-865yt9jhvo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-865yt9jhvo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-865yt9jhvo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'/%3E%3C/svg%3E");
}

.bi-people-nav-menu[b-865yt9jhvo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1H7zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'/%3E%3Cpath d='M5.216 14A2.238 2.238 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.325 6.325 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1h4.216z'/%3E%3Cpath d='M4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z'/%3E%3C/svg%3E");
}

.bi-calendar-week-nav-menu[b-865yt9jhvo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M11 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm-3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm-5 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1z'/%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
}

.bi-reports-nav-menu[b-865yt9jhvo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1 11a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-3zm5-4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7zm5-5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V2z'/%3E%3C/svg%3E");
}

.bi-admin-nav-menu[b-865yt9jhvo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492zM5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0z'/%3E%3Cpath d='M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52l-.094-.319zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.291-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.291c.415.764-.42 1.6-1.185 1.184l-.291-.159a1.873 1.873 0 0 0-2.693 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.692-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.291A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115l.094-.319z'/%3E%3C/svg%3E");
}

.nav-item[b-865yt9jhvo] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-865yt9jhvo] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-865yt9jhvo] {
        padding-bottom: 1rem;
    }

    .nav-item[b-865yt9jhvo]  .nav-link {
        color: #eaf5ef;
        background: none;
        border: none;
        border-left: 3px solid transparent;
        border-radius: 4px;
        padding-left: 0.6rem;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-865yt9jhvo]  a.active {
    background-color: rgba(255,255,255,0.16);
    border-left-color: var(--bh-sienna);
    color: white;
    font-weight: 500;
}

.nav-item[b-865yt9jhvo]  .nav-link:hover {
    background-color: rgba(255,255,255,0.12);
    color: white;
}

.nav-scrollable[b-865yt9jhvo] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-865yt9jhvo] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-865yt9jhvo] {
        display: none;
    }

    .nav-scrollable[b-865yt9jhvo] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Flex to fill the space above the bottom logo; scroll if tall */
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-sk1ovu35iv],
.components-reconnect-repeated-attempt-visible[b-sk1ovu35iv],
.components-reconnect-failed-visible[b-sk1ovu35iv],
.components-pause-visible[b-sk1ovu35iv],
.components-resume-failed-visible[b-sk1ovu35iv],
.components-rejoining-animation[b-sk1ovu35iv] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-sk1ovu35iv],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-sk1ovu35iv],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-sk1ovu35iv],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-sk1ovu35iv],
#components-reconnect-modal.components-reconnect-retrying[b-sk1ovu35iv],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-sk1ovu35iv],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-sk1ovu35iv],
#components-reconnect-modal.components-reconnect-failed[b-sk1ovu35iv],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-sk1ovu35iv] {
    display: block;
}


#components-reconnect-modal[b-sk1ovu35iv] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-sk1ovu35iv 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-sk1ovu35iv 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-sk1ovu35iv 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-sk1ovu35iv]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-sk1ovu35iv 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-sk1ovu35iv {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-sk1ovu35iv {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-sk1ovu35iv {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-sk1ovu35iv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-sk1ovu35iv] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-sk1ovu35iv] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-sk1ovu35iv] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-sk1ovu35iv] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-sk1ovu35iv] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-sk1ovu35iv] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-sk1ovu35iv 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-sk1ovu35iv] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-sk1ovu35iv {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/AdmissionDetail.razor.rz.scp.css */
/* Sienna label marking an admission as an unplanned readmission. */
.readmission-badge[b-6wdeo3dkfl] {
    background-color: var(--bh-sienna);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4em 0.8em;
    border-radius: var(--radius-pill);
}

/* Navy label marking an admission created by an inter-unit transfer of care.
   Links to the related admission (source on the new one, destination on the old). */
.transfer-badge[b-6wdeo3dkfl] {
    background-color: var(--bh-navy);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4em 0.8em;
    border-radius: var(--radius-pill);
    text-decoration: none;
}
.transfer-badge:hover[b-6wdeo3dkfl] { color: #fff; opacity: 0.9; }
.transfer-badge--out[b-6wdeo3dkfl] { background-color: var(--grey-500); }

/* Operations/complications carried over from the previous unit before a transfer:
   shown for context but de-emphasised, and excluded from this unit's audit. */
.list-row--prior[b-6wdeo3dkfl] { opacity: 0.65; background: #f6f8fa; }
.chip--prior[b-6wdeo3dkfl] {
    background: var(--bh-navy);
    color: #fff;
    align-self: center;
}
/* /Components/Pages/PdfView.razor.rz.scp.css */
/* Renders a PDF (via PDF.js) so it displays in any browser. The pages are
   sized by pdf-viewer.js (fit-to-width, hi-dpi backing store) — the CSS here
   only provides the viewer chrome. */
.pdf-container[b-njweo37cm1] {
    height: calc(100vh - 9rem);
    overflow: auto;
    background: var(--navy-800);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

[b-njweo37cm1] .pdf-page {
    display: block;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 22px rgba(16, 35, 56, 0.45);
    border-radius: 2px;
    background: #fff;
}
/* /Components/Pages/RoundList.razor.rz.scp.css */
/* The ward-round list is generated as a real PDF and rendered here by PDF.js,
   so it displays in any browser. Pages are sized by pdf-viewer.js (fit-to-width,
   hi-dpi backing store) — the CSS here only provides the viewer chrome. */
.pdf-container[b-4ut2edkle4] {
    height: calc(100vh - 9rem);
    overflow: auto;
    background: var(--navy-800);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

[b-4ut2edkle4] .pdf-page {
    display: block;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 22px rgba(16, 35, 56, 0.45);
    border-radius: 2px;
    background: #fff;
}
