/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-nt51pt4uu1] {
    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-nt51pt4uu1] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-l48m0kwsmf],
.components-reconnect-repeated-attempt-visible[b-l48m0kwsmf],
.components-reconnect-failed-visible[b-l48m0kwsmf],
.components-pause-visible[b-l48m0kwsmf],
.components-resume-failed-visible[b-l48m0kwsmf],
.components-rejoining-animation[b-l48m0kwsmf] {
    display: none;
}

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

#components-reconnect-modal[b-l48m0kwsmf] {
    background-color: var(--surface);
    color: var(--fg);
    width: 22rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px oklch(0% 0 0 / 0.18);
    opacity: 0;
    font-family: var(--font-sans);
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-l48m0kwsmf 0.5s both;
}

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

#components-reconnect-modal[b-l48m0kwsmf]::backdrop {
    background-color: oklch(15% 0.012 250 / 0.55);
    animation: components-reconnect-modal-fadeInOpacity-b-l48m0kwsmf 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-l48m0kwsmf {
    0% { transform: translateY(30px) scale(0.95); }
    100% { transform: translateY(0); }
}
@keyframes components-reconnect-modal-fadeInOpacity-b-l48m0kwsmf { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes components-reconnect-modal-fadeOutOpacity-b-l48m0kwsmf { 0% { opacity: 1; } 100% { opacity: 0; } }

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

#components-reconnect-modal p[b-l48m0kwsmf] {
    margin: 0;
    text-align: center;
    font-size: 13.5px;
    color: var(--fg);
}

#components-reconnect-modal button[b-l48m0kwsmf] {
    border: 0;
    background-color: var(--accent);
    color: var(--accent-fg);
    padding: 6px 18px;
    border-radius: var(--radius);
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 100ms;
}
#components-reconnect-modal button:hover[b-l48m0kwsmf] { background-color: var(--accent-hover); }
#components-reconnect-modal button:active[b-l48m0kwsmf] { background-color: var(--accent); }

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

.components-rejoining-animation div[b-l48m0kwsmf] {
    position: absolute;
    border: 2px solid var(--accent);
    opacity: 1;
    border-radius: 50%;
    animation: components-rejoining-animation-b-l48m0kwsmf 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.components-rejoining-animation div:nth-child(2)[b-l48m0kwsmf] { animation-delay: -0.5s; }

@keyframes components-rejoining-animation-b-l48m0kwsmf {
    0%   { top: 32px; left: 32px; width: 0;  height: 0;  opacity: 0; }
    4.9% { top: 32px; left: 32px; width: 0;  height: 0;  opacity: 0; }
    5%   { top: 32px; left: 32px; width: 0;  height: 0;  opacity: 1; }
    100% { top: 0;    left: 0;    width: 64px; height: 64px; opacity: 0; }
}
