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

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

#components-reconnect-modal[b-dcm678tsbw] {
    width: min(26rem, calc(100vw - 2rem));
    margin: 20vh auto;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--mud-palette-text-primary);
    background:
        radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--mud-palette-primary) 16%, transparent), transparent 14rem),
        var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: var(--mud-default-borderradius);
    box-shadow: var(--mud-elevation-8);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-dcm678tsbw 0.3s both;
}

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

#components-reconnect-modal[b-dcm678tsbw]::backdrop {
    background-color: color-mix(in srgb, var(--mud-palette-background) 58%, transparent);
    backdrop-filter: blur(10px) saturate(130%);
    animation: components-reconnect-modal-fadeInOpacity-b-dcm678tsbw 0.22s ease-in-out;
    opacity: 1;
}

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

#components-reconnect-modal p[b-dcm678tsbw] {
    margin: 0;
    max-width: 21rem;
    color: var(--mud-palette-text-secondary);
    text-align: center;
    line-height: 1.55;
}

#components-reconnect-modal p[b-dcm678tsbw]::first-line {
    color: var(--mud-palette-text-primary);
    font-weight: 600;
}

#components-reconnect-modal button[b-dcm678tsbw] {
    min-height: 36px;
    padding: 0 1.25rem;
    color: var(--mud-palette-primary-text);
    background-color: var(--mud-palette-primary);
    border: 1px solid var(--mud-palette-primary);
    border-radius: var(--mud-default-borderradius);
    cursor: pointer;
    font: inherit;
    font-weight: 500;
    text-transform: none;
    transition:
        background-color 140ms ease,
        border-color 140ms ease,
        box-shadow 140ms ease,
        transform 140ms ease;
}

#components-reconnect-modal button:hover[b-dcm678tsbw] {
    background-color: var(--mud-palette-primary-darken);
    border-color: var(--mud-palette-primary-darken);
    box-shadow: var(--mud-elevation-2);
}

#components-reconnect-modal button:active[b-dcm678tsbw] {
    transform: translateY(1px);
}

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

.components-rejoining-animation div[b-dcm678tsbw] {
    position: absolute;
    border: 3px solid var(--mud-palette-primary);
    opacity: 1;
    border-radius: 50%;
    animation: components-rejoining-animation-b-dcm678tsbw 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

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

@keyframes components-reconnect-modal-slideUp-b-dcm678tsbw {
    0% {
        transform: translateY(20px) scale(0.96);
    }

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

@keyframes components-rejoining-animation-b-dcm678tsbw {
    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: 0;
        left: 0;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
