/* /Components/Shared/ErrorModal.razor.rz.scp.css */
#blazor-error-ui[b-pcxkkttwtt] {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.4);
}

.error-modal-card[b-pcxkkttwtt] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20rem;
    max-width: calc(100% - 2rem);
    padding: 2rem;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.error-modal-message[b-pcxkkttwtt] {
    margin: 0 0 1.5rem;
}

.error-modal-reload[b-pcxkkttwtt] {
    display: inline-block;
    border: 0;
    background-color: var(--bs-primary);
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
    text-decoration: none;
}

    .error-modal-reload:hover[b-pcxkkttwtt] {
        filter: brightness(0.9);
    }
/* /Components/Shared/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-3s2xvr5dxq],
.components-reconnect-repeated-attempt-visible[b-3s2xvr5dxq],
.components-reconnect-failed-visible[b-3s2xvr5dxq],
.components-pause-visible[b-3s2xvr5dxq],
.components-resume-failed-visible[b-3s2xvr5dxq],
.components-rejoining-animation[b-3s2xvr5dxq] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-3s2xvr5dxq],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-3s2xvr5dxq],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-3s2xvr5dxq],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-3s2xvr5dxq],
#components-reconnect-modal.components-reconnect-retrying[b-3s2xvr5dxq],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-3s2xvr5dxq],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-3s2xvr5dxq],
#components-reconnect-modal.components-reconnect-failed[b-3s2xvr5dxq],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-3s2xvr5dxq] {
    display: block;
}

#components-reconnect-modal[b-3s2xvr5dxq] {
    width: 20rem;
    margin: auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    background-color: white;
    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-3s2xvr5dxq 0.5s both;
}

    #components-reconnect-modal[open][b-3s2xvr5dxq] {
        animation: components-reconnect-modal-slideUp-b-3s2xvr5dxq 1.5s cubic-bezier(0.05, 0.89, 0.25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-3s2xvr5dxq 0.5s ease-in-out 0.3s;
        animation-fill-mode: both;
    }

    #components-reconnect-modal[b-3s2xvr5dxq]::backdrop {
        background-color: rgba(0, 0, 0, 0.4);
        animation: components-reconnect-modal-fadeInOpacity-b-3s2xvr5dxq 0.5s ease-in-out;
        opacity: 1;
    }

    #components-reconnect-modal p[b-3s2xvr5dxq] {
        margin: 0;
        text-align: center;
    }

    #components-reconnect-modal button[b-3s2xvr5dxq] {
        border: 0;
        background-color: var(--bs-primary);
        color: white;
        padding: 4px 24px;
        border-radius: 4px;
    }

        #components-reconnect-modal button:hover[b-3s2xvr5dxq] {
            filter: brightness(0.9);
        }

        #components-reconnect-modal button:active[b-3s2xvr5dxq] {
            background-color: var(--bs-primary);
        }

.components-reconnect-container[b-3s2xvr5dxq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.components-rejoining-animation[b-3s2xvr5dxq] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-3s2xvr5dxq] {
        position: absolute;
        border: 3px solid var(--bs-primary);
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-3s2xvr5dxq 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-3s2xvr5dxq] {
            animation-delay: -0.5s;
        }

@keyframes components-reconnect-modal-slideUp-b-3s2xvr5dxq {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-3s2xvr5dxq {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-3s2xvr5dxq {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes components-rejoining-animation-b-3s2xvr5dxq {
    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;
    }
}
