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

main[b-bu8hprhilm] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sidebar[b-bu8hprhilm] {
    background-color: var(--zc-ink, #17181c);
}

.topbar[b-bu8hprhilm] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 3.5rem;
    padding: 0 1.5rem;
    background: var(--zc-surface, #fff);
    border-bottom: 1px solid var(--zc-border, #e6e8ec);
    position: sticky;
    top: 0;
    z-index: 10;
}

.topbar-context[b-bu8hprhilm] {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--zc-text-muted, #6b7280);
}

.topbar-user[b-bu8hprhilm] {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.topbar-user-link[b-bu8hprhilm] {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: inherit;
    text-decoration: none;
}

    .topbar-user-link:hover .topbar-user-name[b-bu8hprhilm] {
        color: #8a6400;
    }

.topbar-user-name[b-bu8hprhilm] {
    font-size: .85rem;
    font-weight: 600;
    color: var(--zc-text, #1c1e24);
}

.topbar-logout[b-bu8hprhilm] {
    background: none;
    border: 1px solid #d4d7dd;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--zc-text-muted, #6b7280);
    padding: .3rem .75rem;
    cursor: pointer;
}

    .topbar-logout:hover[b-bu8hprhilm] {
        color: #b31d1d;
        border-color: #f0b9b9;
        background: #fdecec;
    }

.content[b-bu8hprhilm] {
    padding: 1.75rem 1.5rem 3rem;
    max-width: 80rem;
    width: 100%;
    margin: 0 auto;
}

/* Public (B2C) topbar */
.topbar-brand[b-bu8hprhilm] {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
}

.topbar-brand-mark[b-bu8hprhilm] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 8px;
    background: var(--zc-amber, #f5b301);
    color: #17181c;
    font-weight: 800;
    font-size: 1.05rem;
}

.topbar-brand-text[b-bu8hprhilm] {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--zc-text, #1c1e24);
}

.topbar-brand-accent[b-bu8hprhilm] {
    color: #b07f00;
}

.pub-menu[b-bu8hprhilm] {
    position: relative;
}

    .pub-menu summary[b-bu8hprhilm] {
        list-style: none;
        cursor: pointer;
        font-size: .85rem;
        font-weight: 600;
        color: var(--zc-text-muted, #6b7280);
        border: 1px solid #d4d7dd;
        border-radius: 8px;
        padding: .35rem .8rem;
        user-select: none;
    }

    .pub-menu summary[b-bu8hprhilm]::-webkit-details-marker {
        display: none;
    }

    .pub-menu[open] summary[b-bu8hprhilm] {
        color: var(--zc-text, #1c1e24);
        border-color: var(--zc-amber, #f5b301);
        background: var(--zc-amber-soft, #fdf3d7);
    }

.pub-menu-items[b-bu8hprhilm] {
    position: absolute;
    right: 0;
    top: calc(100% + .4rem);
    min-width: 14rem;
    background: #fff;
    border: 1px solid var(--zc-border, #e6e8ec);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(23, 24, 28, .12);
    padding: .4rem;
    z-index: 50;
}

    .pub-menu-items a[b-bu8hprhilm] {
        display: block;
        padding: .5rem .7rem;
        border-radius: 6px;
        font-size: .88rem;
        color: var(--zc-text, #1c1e24);
        text-decoration: none;
    }

        .pub-menu-items a:hover[b-bu8hprhilm] {
            background: #f4f5f7;
        }

    .pub-menu-items hr[b-bu8hprhilm] {
        margin: .3rem 0;
        border-color: var(--zc-border, #e6e8ec);
    }

#blazor-error-ui[b-bu8hprhilm] {
    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-bu8hprhilm] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

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

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

    .topbar-user-name[b-bu8hprhilm] {
        max-width: 16rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 640.98px) {
    .topbar[b-bu8hprhilm] {
        padding: 0 1rem;
    }

    .topbar-context[b-bu8hprhilm] {
        display: none;
    }

    .content[b-bu8hprhilm] {
        padding: 1.25rem 1rem 2.5rem;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.sidebar-header[b-3omjecppi8] {
    display: flex;
    align-items: center;
    height: 3.5rem;
    padding: 0 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.brand[b-3omjecppi8] {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
}

.brand-mark[b-3omjecppi8] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 8px;
    background: var(--zc-amber, #f5b301);
    color: #17181c;
    font-weight: 800;
    font-size: 1.05rem;
}

.brand-text[b-3omjecppi8] {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #fff;
}

.brand-accent[b-3omjecppi8] {
    color: var(--zc-amber, #f5b301);
}

.navbar-toggler[b-3omjecppi8] {
    appearance: none;
    cursor: pointer;
    width: 2.25rem;
    height: 2.25rem;
    position: absolute;
    top: .6rem;
    right: .75rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    background: no-repeat center / 1.25rem url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 6h16M4 12h16M4 18h16'/%3E%3C/svg%3E");
}

.nav-scrollable[b-3omjecppi8] {
    display: none;
    padding: .75rem .75rem 1.5rem;
}

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

.nav-section[b-3omjecppi8] {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .38);
    padding: 1.15rem .6rem .4rem;
}

[b-3omjecppi8] .side-link {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem .6rem;
    margin-bottom: .1rem;
    border-radius: 8px;
    font-size: .89rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    transition: background-color .12s ease, color .12s ease;
}

    [b-3omjecppi8] .side-link:hover {
        background: rgba(255, 255, 255, .06);
        color: #fff;
    }

    [b-3omjecppi8] .side-link.active {
        background: rgba(245, 179, 1, .14);
        color: var(--zc-amber, #f5b301);
        font-weight: 600;
    }

[b-3omjecppi8] .side-icon {
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
    opacity: .9;
}

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

    .nav-scrollable[b-3omjecppi8] {
        display: block;
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ayr7pn67ks],
.components-reconnect-repeated-attempt-visible[b-ayr7pn67ks],
.components-reconnect-failed-visible[b-ayr7pn67ks],
.components-pause-visible[b-ayr7pn67ks],
.components-resume-failed-visible[b-ayr7pn67ks],
.components-rejoining-animation[b-ayr7pn67ks] {
    display: none;
}

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


#components-reconnect-modal[b-ayr7pn67ks] {
    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-ayr7pn67ks 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-ayr7pn67ks {
    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;
    }
}
