/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.bf-admin[b-if8beob5ei] {
    display: grid;
    grid-template-columns: 248px 1fr;
    min-height: 100vh;
    background: var(--bf-bg);
    color: var(--bf-ink);
    font-family: var(--bf-sans);
}

.bf-admin__side[b-if8beob5ei] {
    position: sticky;
    top: 0;
    align-self: start;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 22px;
    background: var(--bf-surface);
    border-right: 1px solid var(--bf-line);
}

.bf-logo[b-if8beob5ei] {
    font-family: var(--bf-serif);
    font-weight: 600;
    font-size: 26px;
}

[b-if8beob5ei] .bf-logo__dot { color: var(--bf-accent); }

.bf-admin__role[b-if8beob5ei] {
    font-family: var(--bf-mono);
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--bf-muted);
    margin-bottom: 22px;
}

.bf-admin__nav[b-if8beob5ei] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

[b-if8beob5ei] .bf-admin__nav a {
    display: block;
    padding: 11px 14px;
    border-radius: var(--bf-radius);
    font-size: 14.5px;
    color: var(--bf-ink-soft);
    transition: background .2s, color .2s;
}

[b-if8beob5ei] .bf-admin__nav a:hover { background: var(--bf-surface-2); color: var(--bf-ink); }

[b-if8beob5ei] .bf-admin__nav a.active {
    background: var(--bf-accent-soft);
    color: var(--bf-ink);
    box-shadow: inset 2px 0 0 var(--bf-accent);
}

.bf-admin__foot[b-if8beob5ei] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--bf-line);
}

.bf-admin__logout[b-if8beob5ei] {
    background: none;
    border: 0;
    color: var(--bf-muted);
    font-size: 13.5px;
    padding: 0;
    text-align: left;
}

.bf-admin__logout:hover[b-if8beob5ei] { color: var(--bf-accent); }

.bf-admin__main[b-if8beob5ei] {
    padding: 44px 48px;
    max-width: 1100px;
}

@media (max-width: 720px) {
    .bf-admin[b-if8beob5ei] { grid-template-columns: 1fr; }
    .bf-admin__side[b-if8beob5ei] { position: static; height: auto; flex-direction: row; flex-wrap: wrap; align-items: center; }
    .bf-admin__nav[b-if8beob5ei] { flex-direction: row; flex-wrap: wrap; }
    .bf-admin__main[b-if8beob5ei] { padding: 28px 22px; }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-jsbjj4qh95],
.components-reconnect-repeated-attempt-visible[b-jsbjj4qh95],
.components-reconnect-failed-visible[b-jsbjj4qh95],
.components-pause-visible[b-jsbjj4qh95],
.components-resume-failed-visible[b-jsbjj4qh95],
.components-rejoining-animation[b-jsbjj4qh95] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-jsbjj4qh95],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-jsbjj4qh95],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-jsbjj4qh95],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-jsbjj4qh95],
#components-reconnect-modal.components-reconnect-retrying[b-jsbjj4qh95],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-jsbjj4qh95],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-jsbjj4qh95],
#components-reconnect-modal.components-reconnect-failed[b-jsbjj4qh95],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-jsbjj4qh95] {
    display: block;
}


#components-reconnect-modal[b-jsbjj4qh95] {
    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-jsbjj4qh95 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-jsbjj4qh95 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-jsbjj4qh95 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-jsbjj4qh95]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-jsbjj4qh95 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-jsbjj4qh95 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-jsbjj4qh95 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-jsbjj4qh95 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-jsbjj4qh95] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-jsbjj4qh95] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-jsbjj4qh95] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-jsbjj4qh95] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-jsbjj4qh95] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-jsbjj4qh95] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-jsbjj4qh95] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-jsbjj4qh95 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-jsbjj4qh95] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-jsbjj4qh95 {
    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;
    }
}
