/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ---- EVO Shell: sidebar + main ---- */
.evo-shell[b-8yp72hcf2x] {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Sidebar */
.evo-sidebar[b-8yp72hcf2x] {
    display: none;
    flex-direction: column;
    width: 16rem;
    background: #1a1a1a;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    flex-shrink: 0;
    overflow-y: auto;
    z-index: 30;
}

/* Main content */
.evo-main[b-8yp72hcf2x] {
    flex: 1;
    height: 100%;
    overflow-y: auto;
    background: #0f0f0f;
    position: relative;
}

.evo-content[b-8yp72hcf2x] {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1rem 1.5rem 4rem;
}

/* Mobile header */
.evo-mobile-header[b-8yp72hcf2x] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 20;
}

.evo-logo-sm[b-8yp72hcf2x] {
    width: 2rem;
    height: 2rem;
    background: #D8005B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Desktop: show sidebar, hide mobile header */
@media (min-width: 768px) {
    .evo-sidebar[b-8yp72hcf2x] {
        display: flex;
    }

    .evo-mobile-header[b-8yp72hcf2x] {
        display: none;
    }

    .evo-content[b-8yp72hcf2x] {
        padding: 2rem 2.5rem 4rem;
    }
}

@media (min-width: 1200px) {
    .evo-content[b-8yp72hcf2x] {
        padding: 3rem 3rem 4rem;
    }
}

/* Mobile sidebar toggle */
.evo-sidebar.show[b-8yp72hcf2x] {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 50;
}

/* Blazor error UI */
#blazor-error-ui[b-8yp72hcf2x] {
    color-scheme: dark only;
    background: #1a1a1a;
    bottom: 0;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: #9ca3af;
}

#blazor-error-ui .dismiss[b-8yp72hcf2x] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ---- Sidebar Brand ---- */
.sidebar-brand[b-cs80u3neus] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
}

.sidebar-logo[b-cs80u3neus] {
    width: 2.5rem;
    height: 2.5rem;
    background: #D8005B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.sidebar-brand-text[b-cs80u3neus] {
    display: flex;
    flex-direction: column;
}

.sidebar-brand-name[b-cs80u3neus] {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.sidebar-brand-sub[b-cs80u3neus] {
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 0.125rem;
}

/* ---- Sidebar Navigation ---- */
.sidebar-nav[b-cs80u3neus] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    overflow-y: auto;
}

.sidebar-link[b-cs80u3neus] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
}

.sidebar-link:hover[b-cs80u3neus] {
    background: #262626;
    color: white;
    text-decoration: none;
}

.sidebar-link.active[b-cs80u3neus],
.sidebar-link[b-cs80u3neus]  a.active {
    background: rgba(216, 0, 91, 0.1);
    color: #D8005B;
}

.sidebar-link .material-symbols-outlined[b-cs80u3neus] {
    font-size: 1.25rem;
}

/* ---- Sidebar Bottom ---- */
.sidebar-bottom[b-cs80u3neus] {
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-user[b-cs80u3neus] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: #9ca3af;
    font-size: 0.75rem;
    overflow: hidden;
}

.sidebar-user-name[b-cs80u3neus] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-link-logout:hover[b-cs80u3neus] {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-gnef0d0m5i],
.components-reconnect-repeated-attempt-visible[b-gnef0d0m5i],
.components-reconnect-failed-visible[b-gnef0d0m5i],
.components-pause-visible[b-gnef0d0m5i],
.components-resume-failed-visible[b-gnef0d0m5i],
.components-rejoining-animation[b-gnef0d0m5i] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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