/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ============================================================
   3x3 Tournament — Main Layout
   ============================================================ */

/* Uses design tokens from app.css */

.page[b-oh00embwxc] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-oh00embwxc] {
    flex: 1;
    background: var(--tt-bg);
}

.sidebar[b-oh00embwxc] {
    background: linear-gradient(180deg, var(--tt-navy) 0%, var(--tt-navy-mid) 60%, var(--tt-navy-soft) 100%);
    /* Subtle basketball texture overlay */
    position: relative;
}

/* Mobile: sticky header bar */
@media (max-width: 640.98px) {
    .sidebar[b-oh00embwxc] {
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 16px rgba(9, 30, 58, 0.35);
    }
}

/* Desktop: fixed-width column, scrollable inside */
@media (min-width: 641px) {
    .page[b-oh00embwxc] {
        flex-direction: row;
    }

    .sidebar[b-oh00embwxc] {
        width: 268px;
        height: 100vh;
        position: sticky;
        top: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        box-shadow: 4px 0 24px rgba(9, 30, 58, 0.18);
        flex-shrink: 0;
    }

    article[b-oh00embwxc] {
        padding-left: 2.2rem !important;
        padding-right: 1.8rem !important;
    }
}

/* Blazor error UI */
#blazor-error-ui[b-oh00embwxc] {
    color-scheme: light only;
    background: #fef2f2;
    border-top: 3px solid #ef4444;
    bottom: 0;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.7rem 1.5rem 0.8rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: #7f1d1d;
    font-size: 0.9rem;
    font-weight: 500;
}

#blazor-error-ui .dismiss[b-oh00embwxc] {
    cursor: pointer;
    position: absolute;
    right: 0.85rem;
    top: 0.6rem;
    font-size: 1.1rem;
    color: #dc2626;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ============================================================
   🏀 3x3 Tournament — Sidebar Navigation
   ============================================================ */

/* ── Brand / header ── */
.nav-brand[b-gwq78i5cb4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.1rem 1rem;
    flex-shrink: 0;
    position: relative;
    /* Orange bottom accent line */
    border-bottom: 2px solid rgba(255, 107, 0, 0.35);
    background: rgba(0,0,0,0.12);
}

/* Basketball texture shimmer behind brand */
.nav-brand[b-gwq78i5cb4]::before {
    content: '🏀';
    position: absolute;
    right: -1rem;
    bottom: -1.5rem;
    font-size: 5rem;
    opacity: 0.05;
    pointer-events: none;
    line-height: 1;
}

.brand-link[b-gwq78i5cb4] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.brand-icon-wrap[b-gwq78i5cb4] {
    font-size: 1.6rem;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.7));
    animation: brand-pulse-b-gwq78i5cb4 3s ease-in-out infinite;
}

@keyframes brand-pulse-b-gwq78i5cb4 {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.7)); }
    50%       { filter: drop-shadow(0 0 18px rgba(255, 107, 0, 1.0)); }
}

.brand-name[b-gwq78i5cb4] {
    font-family: 'Barlow Condensed', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-transform: uppercase;
}

/* ── Mobile hamburger toggler ── */
.navbar-toggler[b-gwq78i5cb4] {
    appearance: none;
    cursor: pointer;
    width: 2.75rem;
    height: 2.25rem;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 7px;
    background:
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
        no-repeat center / 1.4rem rgba(255, 255, 255, 0.04);
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}
.navbar-toggler:checked[b-gwq78i5cb4] {
    background-color: rgba(255, 107, 0, 0.25);
    border-color: rgba(255, 107, 0, 0.5);
}

/* ── Scrollable nav body ── */
.nav-scrollable[b-gwq78i5cb4] {
    display: none;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 0.5rem;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(255,107,0,0.25) transparent;
}
.nav-scrollable[b-gwq78i5cb4]::-webkit-scrollbar { width: 4px; }
.nav-scrollable[b-gwq78i5cb4]::-webkit-scrollbar-track { background: transparent; }
.nav-scrollable[b-gwq78i5cb4]::-webkit-scrollbar-thumb { background: rgba(255,107,0,0.3); border-radius: 4px; }

.navbar-toggler:checked ~ .nav-scrollable[b-gwq78i5cb4] { display: flex; }

nav[b-gwq78i5cb4] {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── Section labels ── */
.nav-section-label[b-gwq78i5cb4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.1rem 0.3rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.30);
}
.nav-section-label[b-gwq78i5cb4]::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin-left: 0.3rem;
}

.nav-section-label--top[b-gwq78i5cb4] { padding-top: 0.5rem; }

.nav-section-label--admin[b-gwq78i5cb4] {
    color: rgba(245, 184, 0, 0.55);
    margin-top: 0.3rem;
    padding-top: 0.7rem;
}
.nav-section-label--admin[b-gwq78i5cb4]::before {
    content: '⚙';
    font-size: 0.75rem;
}

/* ── Sections ── */
.nav-section[b-gwq78i5cb4] { padding: 0.1rem 0.6rem 0.4rem; }
.nav-section--admin[b-gwq78i5cb4] { padding-top: 0; }

/* ── Nav links ── */
[b-gwq78i5cb4] .nav-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.85rem 0.6rem 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 9px;
    border: 1px solid transparent;
    transition:
        background 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease,
        transform 0.1s ease;
    line-height: 1.3;
    position: relative;
    margin-bottom: 0.08rem;
}

[b-gwq78i5cb4] .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.06);
    transform: translateX(2px);
}

[b-gwq78i5cb4] .nav-link.active {
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.20) 0%, rgba(255, 107, 0, 0.06) 100%);
    color: #fff;
    border-color: rgba(255, 107, 0, 0.35);
    font-weight: 600;
    box-shadow: inset 3px 0 0 var(--tt-orange, #ff6b00);
}

[b-gwq78i5cb4] .nav-link.active .nav-step-num {
    background: linear-gradient(135deg, var(--tt-orange, #ff6b00), #e05a00);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.55);
}

.nav-link-text[b-gwq78i5cb4] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Step number badge ── */
.nav-step-num[b-gwq78i5cb4] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
    font-family: 'Barlow Condensed', sans-serif;
}

[b-gwq78i5cb4] .nav-link--step:hover .nav-step-num {
    background: rgba(255, 107, 0, 0.35);
    color: #ffb088;
}

/* ── Icons ── */
.nav-icon[b-gwq78i5cb4] {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    opacity: 0.55;
    transition: opacity 0.13s ease;
}

[b-gwq78i5cb4] .nav-link:hover .nav-icon,
[b-gwq78i5cb4] .nav-link.active .nav-icon { opacity: 1; }

/* SVG icons */
.icon-import[b-gwq78i5cb4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5z'/%3E%3Cpath d='M7.646 1.146a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 2.707V11.5a.5.5 0 0 1-1 0V2.707L5.354 4.854a.5.5 0 1 1-.708-.708l3-3z'/%3E%3C/svg%3E");
}
.icon-referees[b-gwq78i5cb4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1h8zm-7.978-1A.261.261 0 0 1 7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002-.014.002H7.022zM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0zM6.936 9.28a5.88 5.88 0 0 0-1.23-.247A7.35 7.35 0 0 0 5 9c-4 0-5 3-5 4 0 .667.333 1 1 1h4.216A2.238 2.238 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816zM4.92 10A5.493 5.493 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.276zM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0zm3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/%3E%3C/svg%3E");
}
.icon-designation[b-gwq78i5cb4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M10.854 7.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708 0z'/%3E%3Cpath d='M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1v-1z'/%3E%3Cpath d='M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5h3zm-3-1A1.5 1.5 0 0 0 5 1.5H4a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1A1.5 1.5 0 0 0 9.5 0h-3z'/%3E%3C/svg%3E");
}
.icon-tournaments[b-gwq78i5cb4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935zM3.504 1c.007.517.026 1.006.056 1.469.13 2.028.457 3.546.87 4.667C5.062 8.533 5.895 9 6.5 9c.604 0 1.438-.467 2.07-1.864.413-1.12.74-2.64.87-4.667.03-.463.049-.952.056-1.469H3.504z'/%3E%3C/svg%3E");
}
.icon-users[b-gwq78i5cb4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1H7zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-5.784 6A2.238 2.238 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.325 6.325 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1h4.216zM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z'/%3E%3C/svg%3E");
}
.icon-account[b-gwq78i5cb4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M11 6a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath fill-rule='evenodd' d='M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm8-7a7 7 0 0 0-5.468 11.37C3.242 11.226 4.805 10 8 10s4.757 1.225 5.468 2.37A7 7 0 0 0 8 1z'/%3E%3C/svg%3E");
}
.icon-signin[b-gwq78i5cb4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M6 3.5a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 0-1 0v2A1.5 1.5 0 0 0 6.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2h-8A1.5 1.5 0 0 0 5 3.5v2a.5.5 0 0 0 1 0v-2z'/%3E%3Cpath fill-rule='evenodd' d='M11.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H1.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3z'/%3E%3C/svg%3E");
}
.icon-register[b-gwq78i5cb4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M6 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H1s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C9.516 10.68 8.289 10 6 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z'/%3E%3Cpath fill-rule='evenodd' d='M13.5 5a.5.5 0 0 1 .5.5V7h1.5a.5.5 0 0 1 0 1H14v1.5a.5.5 0 0 1-1 0V8h-1.5a.5.5 0 0 1 0-1H13V5.5a.5.5 0 0 1 .5-.5z'/%3E%3C/svg%3E");
}
.icon-signout[b-gwq78i5cb4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M10 12.5a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v2a.5.5 0 0 0 1 0v-2A1.5 1.5 0 0 0 9.5 2h-8A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-2a.5.5 0 0 0-1 0v2z'/%3E%3Cpath fill-rule='evenodd' d='M15.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708.708L14.293 7.5H5.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3z'/%3E%3C/svg%3E");
}

/* ── User footer ── */
.nav-footer[b-gwq78i5cb4] {
    flex-shrink: 0;
    padding: 0.85rem 0.8rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.15);
}

.nav-user[b-gwq78i5cb4] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    padding: 0.6rem 0.65rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.06);
}

.nav-avatar[b-gwq78i5cb4] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tt-orange, #ff6b00), #e05a00);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.4);
}

.nav-user-info[b-gwq78i5cb4] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex: 1;
}

.nav-username[b-gwq78i5cb4] {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-user-role[b-gwq78i5cb4] {
    font-size: 0.67rem;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Barlow Condensed', sans-serif;
}

.nav-signout[b-gwq78i5cb4] {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.45rem 0.75rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    text-align: left;
}
.nav-signout:hover[b-gwq78i5cb4] {
    background: rgba(239, 68, 68, 0.18);
    border-color: rgba(239, 68, 68, 0.35);
    color: #fca5a5;
}

/* ── Responsive: desktop ── */
@media (min-width: 641px) {
    .navbar-toggler[b-gwq78i5cb4] { display: none; }
    .nav-scrollable[b-gwq78i5cb4] { display: flex; flex: 1; min-height: 0; overflow-y: auto; }
    nav[b-gwq78i5cb4] { min-height: 100%; }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-t7gnn1o3np],
.components-reconnect-repeated-attempt-visible[b-t7gnn1o3np],
.components-reconnect-failed-visible[b-t7gnn1o3np],
.components-pause-visible[b-t7gnn1o3np],
.components-resume-failed-visible[b-t7gnn1o3np],
.components-rejoining-animation[b-t7gnn1o3np] {
    display: none;
}

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


#components-reconnect-modal[b-t7gnn1o3np] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    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-t7gnn1o3np 0.5s both;
    &[open]

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

}

#components-reconnect-modal[b-t7gnn1o3np]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-t7gnn1o3np 0.5s ease-in-out;
    opacity: 1;
}

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

#components-reconnect-modal button[b-t7gnn1o3np] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-t7gnn1o3np] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-t7gnn1o3np] {
        background-color: #6b9ed2;
    }

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

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

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

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