/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Layout chrome styles come from Shared sipre-design.css */
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
/* Blazor reconnect state visibility + motion.
   Visual chrome (transparent dialog, backdrop dim, white card) lives in Shared sipre-design.css. */

.components-reconnect-first-attempt-visible[b-j0l43azugt],
.components-reconnect-repeated-attempt-visible[b-j0l43azugt],
.components-reconnect-failed-visible[b-j0l43azugt],
.components-pause-visible[b-j0l43azugt],
.components-resume-failed-visible[b-j0l43azugt],
.components-rejoining-animation[b-j0l43azugt] {
    display: none;
}

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

/* Dialog shell: transparent + compact; never a full-viewport white surface. */
#components-reconnect-modal[b-j0l43azugt] {
    background-color: transparent;
    background: transparent;
    border: 0;
    padding: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    max-width: min(20rem, calc(100vw - 2rem));
    max-height: none;
    overflow: visible;
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-j0l43azugt 0.5s both;
}

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

#components-reconnect-modal[b-j0l43azugt]::backdrop {
    background-color: rgba(15, 23, 42, 0.45);
    animation: components-reconnect-modal-fadeInOpacity-b-j0l43azugt 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-j0l43azugt {
    0% {
        transform: translateY(30px) scale(0.95);
    }

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

#components-reconnect-modal p[b-j0l43azugt] {
    margin: 0;
    text-align: center;
}

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

.components-rejoining-animation div[b-j0l43azugt] {
    position: absolute;
    border: 3px solid #0087ff;
    opacity: 1;
    border-radius: 50%;
    animation: components-rejoining-animation-b-j0l43azugt 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

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

@keyframes components-rejoining-animation-b-j0l43azugt {
    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;
    }
}
