/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
#components-reconnect-modal[b-8uyoar3u4v] {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    overflow: hidden;
    background-color: #fff;
    opacity: 0.9;
    text-align: center;
    font-weight: bold;
    border: none;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
}

    #components-reconnect-modal.components-reconnect-show[b-8uyoar3u4v],
    #components-reconnect-modal[open][b-8uyoar3u4v] {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #components-reconnect-modal.components-reconnect-failed[b-8uyoar3u4v] {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.components-reconnect-container[b-8uyoar3u4v] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.components-reconnect-first-attempt-visible[b-8uyoar3u4v],
.components-reconnect-repeated-attempt-visible[b-8uyoar3u4v],
.components-reconnect-failed-visible[b-8uyoar3u4v],
.components-pause-visible[b-8uyoar3u4v],
.components-resume-failed-visible[b-8uyoar3u4v] {
    display: none;
}

dialog[open].components-reconnect-show .components-reconnect-first-attempt-visible[b-8uyoar3u4v] {
    display: block;
}

dialog[open].components-reconnect-failed .components-reconnect-failed-visible[b-8uyoar3u4v] {
    display: block;
}

dialog[open].components-reconnect-failed #components-reconnect-button[b-8uyoar3u4v] {
    display: block;
}

dialog[open].components-reconnect-repeated-attempt .components-reconnect-repeated-attempt-visible[b-8uyoar3u4v] {
    display: block;
}

dialog[open].components-pause .components-pause-visible[b-8uyoar3u4v] {
    display: block;
}

dialog[open].components-pause #components-resume-button[b-8uyoar3u4v],
dialog[open].components-resume-failed #components-resume-button[b-8uyoar3u4v] {
    display: block;
}

dialog[open].components-resume-failed .components-resume-failed-visible[b-8uyoar3u4v] {
    display: block;
}

.components-rejoining-animation[b-8uyoar3u4v] {
    display: flex;
    gap: 8px;
}

    .components-rejoining-animation div[b-8uyoar3u4v] {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: var(--mud-palette-primary, #594AE2);
        animation: rejoining-bounce-b-8uyoar3u4v 1.4s infinite ease-in-out both;
    }

        .components-rejoining-animation div:nth-child(1)[b-8uyoar3u4v] {
            animation-delay: -0.32s;
        }

        .components-rejoining-animation div:nth-child(2)[b-8uyoar3u4v] {
            animation-delay: -0.16s;
        }

@keyframes rejoining-bounce-b-8uyoar3u4v {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

#components-reconnect-button[b-8uyoar3u4v],
#components-resume-button[b-8uyoar3u4v] {
    display: none;
    cursor: pointer;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background-color: var(--mud-palette-primary, #594AE2);
    color: #fff;
    font-size: 14px;
}
