/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-shell[b-4njc0zd01z] {
    min-height: 100vh;
    background: #0c0f14;
    color: #f6f4ef;
}

.main-surface[b-4njc0zd01z] {
    min-height: calc(100vh - 72px);
    border-top: 1px solid rgba(255,255,255,.04);
}

.content[b-4njc0zd01z] {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 56px;
}

.site-footer[b-4njc0zd01z] {
    border-top: 1px solid rgba(255,255,255,.08);
    background: #090c11;
}

.site-footer__inner[b-4njc0zd01z] {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto;
    gap: 28px;
    align-items: start;
}

.footer-brand[b-4njc0zd01z] {
    display: inline-flex;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.site-footer p[b-4njc0zd01z] {
    max-width: 520px;
    margin: 0;
    color: #b7afa3;
    line-height: 1.5;
}

.footer-links[b-4njc0zd01z] {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 18px;
}

.footer-links a[b-4njc0zd01z] {
    color: #cbc5ba;
    font-size: .92rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-links a:hover[b-4njc0zd01z],
.footer-links a:focus-visible[b-4njc0zd01z] {
    color: #f4b860;
}

#blazor-error-ui[b-4njc0zd01z] {
    background: #2b1113;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, .25);
    color: #fff;
    display: none;
    left: 0;
    padding: .6rem 1.25rem .7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-4njc0zd01z] {
    cursor: pointer;
    position: absolute;
    right: .75rem;
    top: .5rem;
}

@media (max-width: 760px) {
    .site-footer__inner[b-4njc0zd01z] {
        grid-template-columns: 1fr;
    }

    .footer-links[b-4njc0zd01z] {
        justify-content: flex-start;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.site-header[b-dyg106ily7] {
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 max(16px, calc((100vw - 1180px) / 2));
    background: rgba(12, 15, 20, .92);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
}

.brand[b-dyg106ily7] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.brand span[b-dyg106ily7] {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: linear-gradient(135deg, #d7263d 60%, #a81c2f 100%);
    color: #fff;
    font-weight: 800;
    font-size: .88rem;
    letter-spacing: .04em;
    box-shadow: 0 0 0 1px rgba(215,38,61,.5), 0 2px 12px rgba(215,38,61,.35);
    transition: box-shadow var(--t-fast);
}

.brand:hover span[b-dyg106ily7] {
    box-shadow: 0 0 0 1px rgba(215,38,61,.8), 0 4px 20px rgba(215,38,61,.55);
}

.brand strong[b-dyg106ily7] {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -.01em;
}

.site-nav[b-dyg106ily7] {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Separator before the logout form */
.site-nav form:not(.language-form)[b-dyg106ily7] {
    margin-left: 8px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,.12);
}

.nav-link[b-dyg106ily7] {
    display: inline-flex;
    align-items: center;
    position: relative;
    min-height: 36px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    color: #e0dbd2;
    font: inherit;
    font-weight: 600;
    font-size: .92rem;
    text-decoration: none;
    transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}

.nav-link:hover[b-dyg106ily7] {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255,255,255,.22);
}

.nav-link.active[b-dyg106ily7] {
    color: #fff;
    background: var(--red-dim);
    border-color: rgba(215,38,61,.35);
}

.nav-link.active[b-dyg106ily7]::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 14px;
    right: 14px;
    height: 2px;
    border-radius: 1px;
    background: var(--red);
}

/* Logout button — clearly a button, not a nav link */
.nav-button[b-dyg106ily7] {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    color: #d6d0c8;
    font: inherit;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}

.nav-button:hover[b-dyg106ily7] {
    color: #fff;
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.42);
}

.language-form[b-dyg106ily7] {
    margin: 0;
}

.language-select[b-dyg106ily7] {
    min-height: 36px;
    padding: 0 34px 0 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: #111722;
    color: #e0dbd2;
    font: inherit;
    font-size: .9rem;
    font-weight: 700;
}

.nav-toggle[b-dyg106ily7] {
    display: none;
}

@media (max-width: 720px) {
    .site-header[b-dyg106ily7] {
        align-items: flex-start;
        padding: 14px 16px;
    }

    .nav-toggle[b-dyg106ily7] {
        display: block;
        appearance: none;
        width: 42px;
        height: 42px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,.16);
        background: linear-gradient(#fff, #fff) center 14px / 20px 2px no-repeat,
            linear-gradient(#fff, #fff) center 21px / 20px 2px no-repeat,
            linear-gradient(#fff, #fff) center 28px / 20px 2px no-repeat;
    }

    .site-nav[b-dyg106ily7] {
        display: none;
        position: absolute;
        left: 16px;
        right: 16px;
        top: 64px;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 8px;
        background: #111722;
    }

    .nav-toggle:checked + .site-nav[b-dyg106ily7] {
        display: flex;
    }

    .site-nav form:not(.language-form)[b-dyg106ily7] {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.08);
        padding-top: 8px;
        margin-top: 4px;
    }

    .language-select[b-dyg106ily7] {
        width: 100%;
    }

    .nav-link.active[b-dyg106ily7]::after {
        display: none;
    }

    .nav-button[b-dyg106ily7] {
        width: 100%;
        justify-content: center;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-n6llv9548f],
.components-reconnect-repeated-attempt-visible[b-n6llv9548f],
.components-reconnect-failed-visible[b-n6llv9548f],
.components-pause-visible[b-n6llv9548f],
.components-resume-failed-visible[b-n6llv9548f],
.components-rejoining-animation[b-n6llv9548f] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-n6llv9548f],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-n6llv9548f],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-n6llv9548f],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-n6llv9548f],
#components-reconnect-modal.components-reconnect-retrying[b-n6llv9548f],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-n6llv9548f],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-n6llv9548f],
#components-reconnect-modal.components-reconnect-failed[b-n6llv9548f],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-n6llv9548f] {
    display: block;
}


#components-reconnect-modal[b-n6llv9548f] {
    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-n6llv9548f 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-n6llv9548f 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-n6llv9548f 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-n6llv9548f]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-n6llv9548f 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-n6llv9548f {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-n6llv9548f {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-n6llv9548f {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-n6llv9548f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-n6llv9548f] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-n6llv9548f] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-n6llv9548f] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-n6llv9548f] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-n6llv9548f] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-n6llv9548f] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-n6llv9548f 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-n6llv9548f] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-n6llv9548f {
    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;
    }
}
