/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-lmiuzy7kq4] {
    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-lmiuzy7kq4] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-doyc04yzz1],
.components-reconnect-repeated-attempt-visible[b-doyc04yzz1],
.components-reconnect-failed-visible[b-doyc04yzz1],
.components-pause-visible[b-doyc04yzz1],
.components-resume-failed-visible[b-doyc04yzz1],
.components-rejoining-animation[b-doyc04yzz1] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-doyc04yzz1],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-doyc04yzz1],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-doyc04yzz1],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-doyc04yzz1],
#components-reconnect-modal.components-reconnect-retrying[b-doyc04yzz1],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-doyc04yzz1],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-doyc04yzz1],
#components-reconnect-modal.components-reconnect-failed[b-doyc04yzz1],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-doyc04yzz1] {
    display: block;
}

#components-reconnect-modal[b-doyc04yzz1] {
    width: 22rem;
    margin: 18vh auto;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    color: #f4f7fc;
    background:
        linear-gradient(180deg, rgba(20, 26, 40, 0.92), rgba(10, 14, 22, 0.94));
    box-shadow:
        0 32px 70px -12px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    opacity: 0;
    font-family: "Inter", "Inter Variable", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: display 0.4s allow-discrete, overlay 0.4s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-doyc04yzz1 0.4s both;
}

#components-reconnect-modal[open][b-doyc04yzz1] {
    animation:
        components-reconnect-modal-slideUp-b-doyc04yzz1 1.2s cubic-bezier(.05, .89, .25, 1.02) 0.25s,
        components-reconnect-modal-fadeInOpacity-b-doyc04yzz1 0.4s ease-in-out 0.25s;
    animation-fill-mode: both;
}

#components-reconnect-modal[b-doyc04yzz1]::backdrop {
    background-color: rgba(5, 8, 13, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: components-reconnect-modal-fadeInOpacity-b-doyc04yzz1 0.4s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-doyc04yzz1 {
    0% {
        transform: translateY(24px) scale(0.97);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-doyc04yzz1 {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-doyc04yzz1 {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

.components-reconnect-container[b-doyc04yzz1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}

#components-reconnect-modal p[b-doyc04yzz1] {
    margin: 0;
    color: rgba(244, 247, 252, 0.82);
    font-size: 0.96rem;
    text-align: center;
    line-height: 1.45;
}

#components-reconnect-modal #components-seconds-to-next-attempt[b-doyc04yzz1] {
    color: #7dd8ef;
    font-weight: 700;
}

#components-reconnect-modal button[b-doyc04yzz1] {
    min-height: 42px;
    padding: 10px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #1f8aab 0%, #0a536a 100%);
    box-shadow:
        0 8px 18px -8px rgba(13, 105, 133, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    font-size: 0.9rem;
    font-weight: 650;
    cursor: pointer;
    transition: transform 160ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 200ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

#components-reconnect-modal button:hover[b-doyc04yzz1] {
    transform: translateY(-1px);
    box-shadow:
        0 14px 26px -8px rgba(13, 105, 133, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

#components-reconnect-modal button:active[b-doyc04yzz1] {
    transform: translateY(0);
}

.components-rejoining-animation[b-doyc04yzz1] {
    position: relative;
    width: 72px;
    height: 72px;
}

.components-rejoining-animation div[b-doyc04yzz1] {
    position: absolute;
    border: 2px solid #7dd8ef;
    opacity: 1;
    border-radius: 50%;
    animation: components-rejoining-animation-b-doyc04yzz1 1.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.components-rejoining-animation div:nth-child(2)[b-doyc04yzz1] {
    animation-delay: -0.5s;
}

@keyframes components-rejoining-animation-b-doyc04yzz1 {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    4.9% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0;
        left: 0;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}
