/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-zl0xg3h5wb] {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #1c1c1c;
}

main[b-zl0xg3h5wb] {
    flex: 1;
    background: #1c1c1c;
}

.top-row[b-zl0xg3h5wb] {
    background: #242424;
    border-bottom: 1px solid #333;
    justify-content: space-between;
    height: 3.5rem;
    display: flex;
    align-items: center;
    color: #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-row-logo[b-zl0xg3h5wb] {
    height: 2rem;
    width: auto;
}

.top-row-title[b-zl0xg3h5wb] {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ff5252;
}

.nav-link-top[b-zl0xg3h5wb] {
    color: #c8c8c8;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
    margin-right: 0.5rem;
    white-space: nowrap;
}

    .nav-link-top:hover[b-zl0xg3h5wb] {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .nav-link-top.active[b-zl0xg3h5wb] {
        background: linear-gradient(90deg, #ff5252 0%, #b71c1c 100%);
        color: #fff;
    }

.top-row[b-zl0xg3h5wb]  a, .top-row[b-zl0xg3h5wb]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
    color: #ff5252;
}

    .top-row[b-zl0xg3h5wb]  a:hover, .top-row[b-zl0xg3h5wb]  .btn-link:hover {
        text-decoration: underline;
        color: #ff7777;
    }

    .top-row[b-zl0xg3h5wb]  .btn-link:disabled {
        color: #888;
        cursor: not-allowed;
        text-decoration: none;
    }

article[b-zl0xg3h5wb] {
    background: #1c1c1c;
    color: #e0e0e0;
    padding-top: 1rem;
}

#blazor-error-ui[b-zl0xg3h5wb] {
    color-scheme: dark only;
    background: #3a0000;
    color: #fff;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0,0,0,0.4);
    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-zl0xg3h5wb] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-qewmprbamm],
.components-reconnect-repeated-attempt-visible[b-qewmprbamm],
.components-reconnect-failed-visible[b-qewmprbamm],
.components-pause-visible[b-qewmprbamm],
.components-resume-failed-visible[b-qewmprbamm],
.components-rejoining-animation[b-qewmprbamm] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-qewmprbamm {
    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;
    }
}
/* /Components/Shared/SpinnerOverlay.razor.rz.scp.css */
.spinner-overlay[b-eyigyah9xs] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.spinner-container[b-eyigyah9xs] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: var(--color-surface, #2a2a2a);
    border: 1px solid var(--color-border, #383838);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.spinner-border[b-eyigyah9xs] {
    width: 4rem;
    height: 4rem;
    border-width: 0.4rem;
    color: var(--color-accent, #d32f2f);
}

.spinner-message[b-eyigyah9xs] {
    color: var(--color-text, #e0e0e0);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

.empty-indicator .display-3[b-eyigyah9xs] {
    line-height: 1;
}
