@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.boiwgh0w5b.bundle.scp.css';

/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-e76z2q4fw1] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-e76z2q4fw1] {
    flex: 1;
    min-width: 0;
}

/* Fed by --m3-sidebar-bg-start/-end/-fg (theme-m3.css), not --m3-primary/--m3-on-primary
   directly -- dark theme degenerates the gradient to a flat fill (start == end) since it consumes
   the near-black --m3-background instead of the bright primary, per the client-reported dark-mode
   readability fix. */
.sidebar[b-e76z2q4fw1] {
    background-image: linear-gradient(180deg, var(--m3-sidebar-bg-start) 0%, var(--m3-sidebar-bg-end) 100%);
    color: var(--m3-sidebar-fg);
}

.top-row[b-e76z2q4fw1] {
    background-color: var(--bs-body-bg);
    border-bottom: 1px solid var(--bs-border-color);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-e76z2q4fw1]  a, .top-row[b-e76z2q4fw1]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-e76z2q4fw1]  a:hover, .top-row[b-e76z2q4fw1]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-e76z2q4fw1]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-e76z2q4fw1] {
        justify-content: space-between;
    }

    .top-row[b-e76z2q4fw1]  a, .top-row[b-e76z2q4fw1]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-e76z2q4fw1] {
        flex-direction: row;
    }

    .sidebar[b-e76z2q4fw1] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-e76z2q4fw1] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-e76z2q4fw1]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-e76z2q4fw1], article[b-e76z2q4fw1] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-e76z2q4fw1] {
    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-e76z2q4fw1] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-jxp7tye19f] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: var(--m3-sidebar-fg);
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid color-mix(in srgb, var(--m3-sidebar-fg) 10%, transparent);
    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 color-mix(in srgb, var(--m3-sidebar-fg) 10%, transparent);
}

.navbar-toggler:checked[b-jxp7tye19f] {
    background-color: color-mix(in srgb, var(--m3-sidebar-fg) 50%, transparent);
}

.top-row[b-jxp7tye19f] {
    min-height: 3.5rem;
    background-color: rgba(0, 0, 0, 0.15);
}

/* Y1 (Lot Y): the hamburger toggler (below, `.navbar-toggler`) is a sibling of `.top-row`, not one
   of its flex children -- it stays absolutely positioned (top:0.5rem; right:1rem; width:3.5rem, see
   the rule below) rather than being a real flex participant, since it also needs to remain a
   sibling of `.nav-scrollable` for the `.navbar-toggler:checked ~ .nav-scrollable` CSS-only toggle
   to keep working. This padding-right reserves that same visual space inside `.container-fluid`'s
   flex row so `.navbar-brand`'s `text-truncate` stops short of the toggler's overlay area instead of
   running underneath it -- root cause of the client-reported title/hamburger collision on mobile. */
.container-fluid[b-jxp7tye19f] {
    padding-right: 4.5rem;
}

.navbar-brand[b-jxp7tye19f] {
    font-size: 1.1rem;
    /* Required for text-truncate to take effect inside a flex child -- a flex item's default
       min-width:auto otherwise prevents it from ever shrinking below its content's natural width. */
    min-width: 0;
}

/* X11 (Lot X): back-nav link projected via SectionOutlet/PageBackNavLink into this same top-row --
   text-white matches navbar-dark's brand-text color explicitly rather than relying only on
   inheritance, since PageBackNavLink is a separately-scoped component. Y1's flex-shrink-0 (keeping
   it from ever being compressed by the brand link's flex-grow-1) is a Bootstrap utility class on the
   button itself, see PageBackNavLink.razor. */
[b-jxp7tye19f] .top-row-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: white;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    margin-right: 0.5rem;
}

[b-jxp7tye19f] .top-row-back-link:hover {
    color: white;
    text-decoration: underline;
}

.bi[b-jxp7tye19f] {
    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-jxp7tye19f] {
    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-jxp7tye19f] {
    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-jxp7tye19f] {
    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-card-list-nav-menu[b-jxp7tye19f] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-card-list' viewBox='0 0 16 16'%3E%3Cpath d='M14.5 3a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h13zm-13-1A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2h-13z'/%3E%3Cpath d='M5 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm0-2.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0zM5 10.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm2.5-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5zm0 2.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5zm0 2.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5z'/%3E%3C/svg%3E");
}

.bi-people-fill-nav-menu[b-jxp7tye19f] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-people-fill' 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 1zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6m-5.784 6A2.24 2.24 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.3 6.3 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1zM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5'/%3E%3C/svg%3E");
}

.bi-person-circle-nav-menu[b-jxp7tye19f] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-circle' viewBox='0 0 16 16'%3E%3Cpath d='M11 6a3 3 0 1 1-6 0 3 3 0 0 1 6 0'/%3E%3Cpath fill-rule='evenodd' d='M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m8-7a7 7 0 0 0-5.468 11.37C3.242 10.226 4.805 9 8 9s4.757 1.225 5.468 2.37A7 7 0 0 0 8 1'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-jxp7tye19f] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5M10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-jxp7tye19f] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5v11A2.5 2.5 0 0 0 4.5 16h7a2.5 2.5 0 0 0 2.5-2.5v-11A2.5 2.5 0 0 0 11.5 0zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v11a1.5 1.5 0 0 1-.038.343A3 3 0 0 0 10.6 12h-5.2a3 3 0 0 0-2.362 1.843A1.5 1.5 0 0 1 3 13.5z'/%3E%3C/svg%3E");
}

.bi-collection-nav-menu[b-jxp7tye19f] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-collection' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 3.5a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm2-2a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zM0 8a1.5 1.5 0 0 1 1.5-1.5h13A1.5 1.5 0 0 1 16 8v6a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 14zm1.5-.5A.5.5 0 0 0 1 8v6a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5V8a.5.5 0 0 0-.5-.5z'/%3E%3C/svg%3E");
}

.bi-file-earmark-spreadsheet-nav-menu[b-jxp7tye19f] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-file-earmark-spreadsheet' viewBox='0 0 16 16'%3E%3Cpath d='M9.293 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4.707A1 1 0 0 0 13.707 4L10 .293A1 1 0 0 0 9.293 0M9.5 3.5v-2l3 3h-2a1 1 0 0 1-1-1'/%3E%3Cpath d='M4 8h5v3H4zM4 11h5v1a1 1 0 0 0 1 1h1v-2zM10 12h1a1 1 0 0 0 1-1v-1h-2zM12 10V8h-2v2zM4 7h8V6H4z'/%3E%3C/svg%3E");
}

/* Lot 034 (34.5): generated-files archive consultation page. */
.bi-archive-nav-menu[b-jxp7tye19f] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-archive' viewBox='0 0 16 16'%3E%3Cpath d='M0 2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v7.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 12.5V5a1 1 0 0 1-1-1zm2 3v7.5A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5V5zm13-3H1v2h14zM5 7.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5'/%3E%3C/svg%3E");
}

/* Lot 038: ApiTest.razor, real HTTP call to the deployed Web API test page. */
.bi-send-nav-menu[b-jxp7tye19f] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-send' viewBox='0 0 16 16'%3E%3Cpath d='M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855H.766l-.452.18a.5.5 0 0 0-.082.887l.41.26.001.002 4.995 3.178 3.178 4.995.002.002.26.41a.5.5 0 0 0 .886-.083l6-15Zm-1.833 1.79L6.637 10.07l-.215-.338a.5.5 0 0 0-.154-.154l-.338-.215 7.594-7.594.83-.169-.169.83Z'/%3E%3C/svg%3E");
}

.nav-item[b-jxp7tye19f] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-jxp7tye19f] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-jxp7tye19f] {
        padding-bottom: 1rem;
    }

    .nav-item[b-jxp7tye19f]  .nav-link {
        color: color-mix(in srgb, var(--m3-sidebar-fg) 80%, var(--m3-primary) 20%);
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

/* The --m3-sidebar-active-bg/-fg/-hover-bg tokens (theme-m3.css) drive the active/hovered nav
   item's colors: dark theme marks the active item with --m3-primary as a text accent plus a
   faint tint rather than a solid on-primary fill -- see that token's own comment for why. */
.nav-item[b-jxp7tye19f]  a.active {
    background-color: var(--m3-sidebar-active-bg);
    color: var(--m3-sidebar-active-fg);
}

.nav-item[b-jxp7tye19f]  .nav-link:hover {
    background-color: var(--m3-sidebar-hover-bg);
    color: var(--m3-sidebar-fg);
}

/* Follow-up (post-062): the logo + version/date footer is hidden on mobile entirely (the same
   information moves to Home.razor there, since the client reported this block rendering poorly
   inside the mobile open-menu) and, on desktop, pushed to the true bottom of the sidebar via
   `margin-top: auto` on the flex `<nav>` below -- previously the footer just sat right after the
   last nav link, leaving a visible gap under it whenever the current account's link list was short. */
.sidebar-footer[b-jxp7tye19f] {
    display: none;
}

.sidebar-logo-container[b-jxp7tye19f] {
    padding: 1rem 0 0.25rem;
    text-align: center;
}

.sidebar-logo-container img[b-jxp7tye19f] {
    max-width: 80%;
    height: auto;
}

/* Dark/light theme toggle button. Centered like the logo above it; both icon spans are always
   rendered, only one shown at a time via the attribute selectors below. The selector targets
   `:root[data-bs-theme=...]` (the <html> element, set by wwwroot/js/theme.js) rather than a class
   scoped to this component -- Blazor's CSS isolation only appends the scope attribute to the last
   compound selector in each rule (`.theme-toggle-icon-*` here), so `:root[...]` still matches the
   real document root while `.theme-toggle-icon-*` still only targets this component's own markup. */
.sidebar-theme-toggle-container[b-jxp7tye19f] {
    text-align: center;
    padding: 0 0 0.5rem;
}

.sidebar-theme-toggle[b-jxp7tye19f] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    color: color-mix(in srgb, var(--m3-sidebar-fg) 80%, var(--m3-primary) 20%);
    background: none;
    border: 1px solid color-mix(in srgb, var(--m3-sidebar-fg) 25%, transparent);
}

.sidebar-theme-toggle:hover[b-jxp7tye19f],
.sidebar-theme-toggle:focus-visible[b-jxp7tye19f] {
    background-color: var(--m3-sidebar-hover-bg);
    color: var(--m3-sidebar-fg);
}

.theme-toggle-icon-moon[b-jxp7tye19f] {
    display: none;
}

:root[data-bs-theme="dark"] .theme-toggle-icon-sun[b-jxp7tye19f] {
    display: none;
}

:root[data-bs-theme="dark"] .theme-toggle-icon-moon[b-jxp7tye19f] {
    display: inline-flex;
}

/* Discrete, consistent with the sidebar's other secondary elements (small font size, muted color).
   `cursor: default` signals the `title` tooltip (detailed publication date/time) without implying
   the element is interactive/clickable. */
.sidebar-version-info[b-jxp7tye19f] {
    padding: 0 0 1rem;
    text-align: center;
    font-size: 0.75rem;
    color: color-mix(in srgb, var(--m3-sidebar-fg) 60%, transparent);
    cursor: default;
}

.nav-scrollable[b-jxp7tye19f] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-jxp7tye19f] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-jxp7tye19f] {
        display: none;
    }

    .nav-scrollable[b-jxp7tye19f] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }

    /* Fills .nav-scrollable's fixed height above so the flex footer below has real spare space to
       be pushed into via margin-top:auto, instead of only taking its content's natural height. */
    .nav-scrollable > nav.nav.flex-column[b-jxp7tye19f] {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .sidebar-footer[b-jxp7tye19f] {
        display: flex;
        flex-direction: column;
        margin-top: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-r1prr2pqhd],
.components-reconnect-repeated-attempt-visible[b-r1prr2pqhd],
.components-reconnect-failed-visible[b-r1prr2pqhd],
.components-pause-visible[b-r1prr2pqhd],
.components-resume-failed-visible[b-r1prr2pqhd],
.components-rejoining-animation[b-r1prr2pqhd] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-r1prr2pqhd],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-r1prr2pqhd],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-r1prr2pqhd],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-r1prr2pqhd],
#components-reconnect-modal.components-reconnect-retrying[b-r1prr2pqhd],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-r1prr2pqhd],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-r1prr2pqhd],
#components-reconnect-modal.components-reconnect-failed[b-r1prr2pqhd],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-r1prr2pqhd] {
    display: block;
}


#components-reconnect-modal[b-r1prr2pqhd] {
    background-color: var(--bs-modal-bg);
    color: var(--bs-modal-color);
    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-r1prr2pqhd 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-r1prr2pqhd 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-r1prr2pqhd 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-r1prr2pqhd]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-r1prr2pqhd 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-r1prr2pqhd {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-r1prr2pqhd {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-r1prr2pqhd {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-r1prr2pqhd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-r1prr2pqhd] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-r1prr2pqhd] {
    border: 0;
    background-color: var(--m3-primary);
    color: var(--m3-on-primary);
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-r1prr2pqhd] {
        background-color: color-mix(in srgb, var(--m3-primary) 88%, black);
    }

    #components-reconnect-modal button:active[b-r1prr2pqhd] {
        background-color: color-mix(in srgb, var(--m3-primary) 78%, black);
    }

.components-rejoining-animation[b-r1prr2pqhd] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-r1prr2pqhd] {
        position: absolute;
        border: 3px solid var(--m3-primary);
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-r1prr2pqhd 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-r1prr2pqhd] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-r1prr2pqhd {
    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/Admin/ExportProfileTest.razor.rz.scp.css */
.test-table-details[b-1s6t95m5bm] {
    margin-top: 1.5rem;
}

.test-table-details > summary[b-1s6t95m5bm] {
    cursor: pointer;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.test-table-details > summary[b-1s6t95m5bm]::-webkit-details-marker {
    display: none;
}

.test-table-details > summary[b-1s6t95m5bm]::before {
    content: "\25B6";
    font-size: 0.9rem;
    transition: transform 0.15s ease;
}

.test-table-details[open] > summary[b-1s6t95m5bm]::before {
    transform: rotate(90deg);
}

.generated-sheet-scroll[b-1s6t95m5bm] {
    max-height: 420px;
    max-width: 100%;
    overflow: auto;
    margin-bottom: 1.5rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.375rem;
}

.generated-sheet-table[b-1s6t95m5bm] {
    margin-bottom: 0;
    font-size: 0.8125rem;
}

.generated-sheet-table th[b-1s6t95m5bm],
.generated-sheet-table td[b-1s6t95m5bm] {
    padding: 0.25rem 0.5rem;
    max-width: 320px;
    white-space: normal;
    overflow-wrap: break-word;
    vertical-align: top;
}

.generated-sheet-table thead th[b-1s6t95m5bm] {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: var(--bs-table-bg, #fff);
    box-shadow: inset 0 -1px 0 var(--bs-border-color);
}
/* /Components/Pages/Admin/GeneratedFiles.razor.rz.scp.css */
/* QuickGrid pads the visible page out to Pagination.ItemsPerPage (25) with empty filler <tr>s --
   no cell content, no aria-rowindex -- so the table's height never shrinks on a partial last page
   (confirmed by decompiling the installed Microsoft.AspNetCore.Components.QuickGrid package,
   RenderNonVirtualizedRows). With most real pages far under 25 rows, this rendered as a long band
   of near-invisible empty striped rows below the real data. Hidden here rather than lowering
   ItemsPerPage, since 25/page is still the right page size once the archive grows.

   ::deep is required: <table>/<tbody>/<tr> are rendered by QuickGrid, a child component, not by
   this component's own markup, so Blazor's CSS isolation scope attribute never reaches them
   without it. Only #generated-files-grid's own real data rows (the ones carrying aria-rowindex)
   stay visible; nothing about QuickGrid's own pagination/sorting behavior is touched. */
[b-ocbeoit9p2] #generated-files-grid tbody tr:not([aria-rowindex]) {
    display: none;
}
/* /Components/Pages/Admin/ImportProfileTest.razor.rz.scp.css */
.test-table-details[b-o10sta50lj] {
    margin-top: 1.5rem;
}

.test-table-details > summary[b-o10sta50lj] {
    cursor: pointer;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.test-table-details > summary[b-o10sta50lj]::-webkit-details-marker {
    display: none;
}

.test-table-details > summary[b-o10sta50lj]::before {
    content: "\25B6";
    font-size: 0.9rem;
    transition: transform 0.15s ease;
}

.test-table-details[open] > summary[b-o10sta50lj]::before {
    transform: rotate(90deg);
}

.test-table-scroll[b-o10sta50lj] {
    max-height: 420px;
    overflow-y: auto;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.375rem;
}

.test-table[b-o10sta50lj] {
    margin-bottom: 0;
}

.test-table thead th[b-o10sta50lj] {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: var(--bs-table-bg, #fff);
    box-shadow: inset 0 -1px 0 var(--bs-border-color);
}
/* /Components/Pages/Admin/Logs.razor.rz.scp.css */
.log-row-error[b-o8bz8d5h0x] {
    border-left: 4px solid var(--bs-danger);
    background-color: rgba(var(--m3-danger-rgb), 0.08);
}

.log-row-warning[b-o8bz8d5h0x] {
    border-left: 4px solid var(--bs-warning);
    background-color: rgba(var(--m3-warning-rgb), 0.08);
}

.log-row-info[b-o8bz8d5h0x] {
    border-left: 4px solid transparent;
}

/* Lot 041 (41.4): touch-target size aligned with the project's other icon buttons
   (.block-field-icon-btn, 34px) -- min-width/min-height rather than a fixed width/height, since this
   button also renders visible text ("Copied") momentarily after a click, unlike the icon-only buttons
   that pattern was designed for. */
.log-copy-btn[b-o8bz8d5h0x] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 34px;
    padding: 0.1rem 0.35rem;
    line-height: 1;
    color: var(--bs-secondary-color);
}

    .log-copy-btn:hover[b-o8bz8d5h0x] {
        color: var(--bs-body-color);
    }

/* V5: <details>/<summary> disclosure for the full (untruncated) message, same idiom as
   ImportProfileEditor.razor's sheet-rule-sublist-details -- cursor + no default marker on the
   clickable summary, since the toggle is driven by component state, not the native marker. */
.log-message-details > summary[b-o8bz8d5h0x] {
    cursor: pointer;
    color: var(--bs-link-color);
    list-style: none;
}

.log-message-details > summary[b-o8bz8d5h0x]::-webkit-details-marker {
    display: none;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Follow-up (post-062): mobile-only client logo + version/date, mirroring the inverse of
   NavMenu.razor.css's `.sidebar-footer` visibility rule -- exactly one of the two locations shows
   this information at any given viewport width, matching MainLayout.razor.css's own 641px sidebar
   breakpoint (not Bootstrap's 768px `md`), since it's the same breakpoint the sidebar itself
   switches on. */
.home-mobile-brand[b-tzbzi9q3ke] {
    display: none;
}

@media (max-width: 640.98px) {
    .home-mobile-brand[b-tzbzi9q3ke] {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 1.5rem;
    }
}

.home-mobile-brand img[b-tzbzi9q3ke] {
    max-width: 200px;
    height: auto;
}

.home-mobile-version-info[b-tzbzi9q3ke] {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--bs-secondary-color);
    cursor: default;
}
