/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Drawer nav wrapper */
[b-rwjef2ay4r] .mud-drawer-content {
    display: flex;
    flex-direction: column;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Nav section headers */
[b-nvl1kgf6hc] .nav-section-header {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 20px 16px 6px 16px;
    opacity: 0.5;
}

/* Themed nav (dark sidebar in light mode) - section headers */
[b-nvl1kgf6hc] .themed-nav .nav-section-header {
    color: #B3D4FC;
}

/* Nav items */
[b-nvl1kgf6hc] .mud-navmenu .mud-list-item {
    border-radius: 8px;
    margin: 2px 4px;
    transition: all 0.15s ease;
}

/* Themed nav - text and icon colors */
[b-nvl1kgf6hc] .themed-nav .mud-list-item {
    color: #B3D4FC !important;
}

[b-nvl1kgf6hc] .themed-nav .mud-list-item .mud-icon-root {
    color: #7EB8E8 !important;
}

[b-nvl1kgf6hc] .themed-nav .mud-list-item:hover {
    background-color: rgba(255, 255, 255, 0.12) !important;
    color: #FFFFFF !important;
}

[b-nvl1kgf6hc] .themed-nav .mud-list-item:hover .mud-icon-root {
    color: #FFFFFF !important;
}

/* Active item highlight - HIGH CONTRAST */
[b-nvl1kgf6hc] .mud-nav-link.active {
    font-weight: 600;
}

[b-nvl1kgf6hc] .themed-nav .mud-nav-link.active {
    background-color: #FFFFFF !important;
    color: #0D47A1 !important;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

[b-nvl1kgf6hc] .themed-nav .mud-nav-link.active .mud-icon-root {
    color: #0D47A1 !important;
}

[b-nvl1kgf6hc] .themed-nav .mud-nav-link.active:hover {
    background-color: #FFFFFF !important;
    color: #0D47A1 !important;
}

/* Nested nav items indent */
[b-nvl1kgf6hc] .mud-nav-group .mud-nav-link {
    padding-left: 2.5rem !important;
    font-size: 0.8125rem;
}

/* Nav group expand icon */
[b-nvl1kgf6hc] .mud-nav-group .mud-expand-icon {
    transition: transform 0.2s ease;
}

[b-nvl1kgf6hc] .themed-nav .mud-expand-icon {
    color: #7EB8E8 !important;
}

/* Nav group title styling for themed sidebar */
[b-nvl1kgf6hc] .themed-nav .mud-nav-group .mud-list-item-text {
    color: #B3D4FC !important;
}

[b-nvl1kgf6hc] .themed-nav .mud-nav-group:has(.mud-nav-link.active) > .mud-list-item .mud-list-item-text {
    color: #FFFFFF !important;
    font-weight: 600;
}

[b-nvl1kgf6hc] .themed-nav .mud-nav-group:has(.mud-nav-link.active) > .mud-list-item .mud-icon-root {
    color: #FFFFFF !important;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-lkaefu53bo],
.components-reconnect-repeated-attempt-visible[b-lkaefu53bo],
.components-reconnect-failed-visible[b-lkaefu53bo],
.components-pause-visible[b-lkaefu53bo],
.components-resume-failed-visible[b-lkaefu53bo],
.components-rejoining-animation[b-lkaefu53bo] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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