/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Layout is standard MudBlazor (MudLayout/AppBar/Drawer/MainContent) — no custom shell CSS. */
#blazor-error-ui[b-s6o0vsq6fb] {
    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-s6o0vsq6fb] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Nav is standard MudNavMenu inside a MudDrawer — styling comes from the MudBlazor theme. */
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-gcnjew5c3g],
.components-reconnect-repeated-attempt-visible[b-gcnjew5c3g],
.components-reconnect-failed-visible[b-gcnjew5c3g],
.components-pause-visible[b-gcnjew5c3g],
.components-resume-failed-visible[b-gcnjew5c3g],
.components-rejoining-animation[b-gcnjew5c3g] {
    display: none;
}

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


#components-reconnect-modal[b-gcnjew5c3g] {
    background-color: #fff;
    color: #1f2433;
    width: min(26rem, calc(100vw - 32px));
    margin: 18vh auto;
    padding: 1.75rem 1.75rem 1.5rem;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-gcnjew5c3g 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

#components-reconnect-modal h2[b-gcnjew5c3g] { margin: 0 0 6px; font-size: 1.15rem; font-weight: 600; text-align: center; }
#components-reconnect-modal p[b-gcnjew5c3g] { margin: 0; text-align: center; color: #5b6272; line-height: 1.5; font-size: .95rem; }
.components-reconnect-actions[b-gcnjew5c3g] { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.components-reconnect-status[b-gcnjew5c3g] { font-size: .8rem !important; color: #8a91a3 !important; min-height: 1.2em; }

#components-reconnect-modal button[b-gcnjew5c3g] {
    border: 1px solid #d5d9e4;
    background-color: #fff;
    color: #1f2433;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
}
#components-reconnect-modal button.primary[b-gcnjew5c3g] { background-color: #594ae2; border-color: #594ae2; color: #fff; }
#components-reconnect-modal button:hover[b-gcnjew5c3g] { filter: brightness(0.95); }
@media (prefers-color-scheme: dark) {
    #components-reconnect-modal[b-gcnjew5c3g] { background-color: #1f2433; color: #e8ecf7; }
    #components-reconnect-modal p[b-gcnjew5c3g] { color: #aeb6cf; }
    #components-reconnect-modal button[b-gcnjew5c3g] { background-color: #2a3042; border-color: #3a4156; color: #e8ecf7; }
    #components-reconnect-modal button.primary[b-gcnjew5c3g] { background-color: #7c6ff0; border-color: #7c6ff0; }
}

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

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

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

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