/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ─────────────────────────────────────────────
   MainLayout — Top-nav luxury real estate layout
   ───────────────────────────────────────────── */

/* ─── Site Header (Top Navigation) ─── */
.site-header[b-4cqp1j8fqe] {
    background: var(--pr-surface);
    border-bottom: 1px solid var(--pr-border);
    position: sticky;
    top: 0;
    z-index: 100;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.site-header.assistant-open .header-inner[b-4cqp1j8fqe] {
    padding-right: calc(2rem + var(--assistant-width) + 4px);
}

.demo-disclaimer-bar.assistant-open[b-4cqp1j8fqe] {
    padding-right: calc(16px + var(--assistant-width) + 4px);
}

.header-inner[b-4cqp1j8fqe] {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 4rem;
}

/* ─── Logo ─── */
.site-logo[b-4cqp1j8fqe] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--pr-text);
    flex-shrink: 0;
}

.logo-icon[b-4cqp1j8fqe] {
    color: var(--pr-accent);
}

.logo-text[b-4cqp1j8fqe] {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.logo-highlight[b-4cqp1j8fqe] {
    color: var(--pr-accent);
}

/* ─── Desktop Navigation ─── */
.desktop-nav[b-4cqp1j8fqe] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.desktop-nav[b-4cqp1j8fqe]  .nav-link {
    color: var(--pr-text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
    position: relative;
}

.desktop-nav[b-4cqp1j8fqe]  .nav-link:hover {
    color: var(--pr-text);
    background: var(--pr-bg);
}

.desktop-nav[b-4cqp1j8fqe]  .nav-link.active {
    color: var(--pr-secondary);
    font-weight: 600;
}

.desktop-nav[b-4cqp1j8fqe]  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--pr-accent);
    border-radius: 1px;
}

/* ─── Header Actions ─── */
.header-actions[b-4cqp1j8fqe] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ─── AI FAB ─── */
.ai-fab[b-4cqp1j8fqe] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--pr-primary);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(28,35,64,0.2);
}

.ai-fab:hover[b-4cqp1j8fqe] {
    background: var(--pr-primary-light);
    box-shadow: 0 4px 16px rgba(28,35,64,0.3);
    transform: translateY(-1px);
}

/* ─── User Chip ─── */
.user-chip[b-4cqp1j8fqe] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-chip-avatar[b-4cqp1j8fqe] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
}

.user-chip-name[b-4cqp1j8fqe] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pr-text);
}

.btn-logout[b-4cqp1j8fqe] {
    background: none;
    border: 1px solid var(--pr-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.78rem;
    color: var(--pr-text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-logout:hover[b-4cqp1j8fqe] {
    border-color: var(--pr-text-muted);
    color: var(--pr-text);
}

/* ─── Hamburger ─── */
.hamburger[b-4cqp1j8fqe] {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 200;
}

.hamburger-line[b-4cqp1j8fqe] {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--pr-text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.is-active .hamburger-line:nth-child(1)[b-4cqp1j8fqe] {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2)[b-4cqp1j8fqe] {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-active .hamburger-line:nth-child(3)[b-4cqp1j8fqe] {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile Overlay & Drawer ─── */
.mobile-overlay[b-4cqp1j8fqe] {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 150;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.mobile-drawer[b-4cqp1j8fqe] {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--pr-surface);
    z-index: 200;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-drawer.open[b-4cqp1j8fqe] {
    right: 0;
}

.drawer-header[b-4cqp1j8fqe] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--pr-border);
}

.drawer-brand[b-4cqp1j8fqe] {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--pr-text);
}

.drawer-close[b-4cqp1j8fqe] {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--pr-text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

.drawer-nav[b-4cqp1j8fqe] {
    padding: 1rem 0;
    flex: 1;
}

.drawer-nav[b-4cqp1j8fqe]  .drawer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    color: var(--pr-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
}

.drawer-nav[b-4cqp1j8fqe]  .drawer-link:hover,
.drawer-nav[b-4cqp1j8fqe]  .drawer-link.active {
    background: var(--pr-bg);
    color: var(--pr-secondary);
}

.drawer-nav[b-4cqp1j8fqe]  .drawer-link.active {
    border-left: 3px solid var(--pr-accent);
    font-weight: 600;
}

.drawer-footer[b-4cqp1j8fqe] {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--pr-border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.drawer-user[b-4cqp1j8fqe] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.drawer-user-name[b-4cqp1j8fqe] {
    font-weight: 600;
    font-size: 0.9rem;
}

.drawer-user-role[b-4cqp1j8fqe] {
    font-size: 0.75rem;
    color: var(--pr-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ─── Main Content ─── */
.site-main[b-4cqp1j8fqe] {
    flex: 1;
    min-height: calc(100vh - 4rem);
}

.content-wrapper[b-4cqp1j8fqe] {
    display: flex;
    min-height: calc(100vh - 4rem);
}

.content-wrapper.assistant-open[b-4cqp1j8fqe] {
    padding-right: calc(var(--assistant-width) + 4px);
}

.page-content[b-4cqp1j8fqe] {
    flex: 1;
    min-width: 0;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.resize-handle[b-4cqp1j8fqe] {
    position: fixed;
    top: 0;
    bottom: 0;
    right: var(--assistant-width);
    width: 4px;
    cursor: col-resize;
    background: var(--pr-border);
    transition: background 0.2s;
    z-index: 301;
}

.resize-handle:hover[b-4cqp1j8fqe] {
    background: var(--pr-accent);
}

.resize-overlay[b-4cqp1j8fqe] {
    position: fixed;
    inset: 0;
    cursor: col-resize;
    z-index: 302;
}

/* ─── Footer ─── */
.site-footer[b-4cqp1j8fqe] {
    background: var(--pr-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 2.5rem 2rem;
}

.footer-inner[b-4cqp1j8fqe] {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo[b-4cqp1j8fqe] {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
}

.footer-tagline[b-4cqp1j8fqe] {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
}

.footer-links[b-4cqp1j8fqe] {
    display: flex;
    gap: 1.5rem;
}

.footer-links a[b-4cqp1j8fqe] {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover[b-4cqp1j8fqe] {
    color: var(--pr-accent);
}

.footer-copy[b-4cqp1j8fqe] {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .site-header.assistant-open .header-inner[b-4cqp1j8fqe],
    .demo-disclaimer-bar.assistant-open[b-4cqp1j8fqe] {
        padding-right: 1rem;
    }

    .header-inner[b-4cqp1j8fqe] {
        padding: 0 1rem;
    }

    .desktop-nav[b-4cqp1j8fqe] {
        display: none;
    }

    .hamburger[b-4cqp1j8fqe] {
        display: flex;
    }

    .mobile-overlay[b-4cqp1j8fqe] {
        display: block;
    }

    .user-chip[b-4cqp1j8fqe],
    .btn-logout[b-4cqp1j8fqe] {
        display: none;
    }

    .ai-fab .ai-fab-label[b-4cqp1j8fqe] {
        display: none;
    }

    .page-content[b-4cqp1j8fqe] {
        padding: 1.25rem;
    }

    .content-wrapper.assistant-open[b-4cqp1j8fqe] {
        padding-right: 0;
    }

    .resize-handle[b-4cqp1j8fqe] {
        display: none;
    }

    .footer-inner[b-4cqp1j8fqe] {
        flex-direction: column;
        text-align: center;
    }

}

@media (min-width: 769px) {
    .mobile-drawer[b-4cqp1j8fqe] {
        display: none;
    }

    .mobile-overlay[b-4cqp1j8fqe] {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .header-inner[b-4cqp1j8fqe] {
        height: 3.5rem;
    }

    .logo-text[b-4cqp1j8fqe] {
        font-size: 1.1rem;
    }

    .page-content[b-4cqp1j8fqe] {
        padding: 1rem 0.75rem;
    }
}

/* ─── Error UI ─── */
#blazor-error-ui[b-4cqp1j8fqe] {
    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-4cqp1j8fqe] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu styles are now in MainLayout.razor.css */
/* /Components/Layout/RealtyAiAssistant.razor.rz.scp.css */
/* ─── Realty AI Assistant ─── */
.ai-panel[b-vq3xi7fnc6] {
    border-left: 1px solid var(--pr-border);
    background: var(--pr-surface);
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    flex-shrink: 0;
    min-height: 0;
    overflow: hidden;
    z-index: 300;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
}

.ai-panel-header[b-vq3xi7fnc6] {
    background: var(--pr-primary);
    color: white;
    padding: 0.85rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-panel-title[b-vq3xi7fnc6] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.92rem;
}

.ai-panel-close[b-vq3xi7fnc6] {
    background: none;
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.ai-panel-close:hover[b-vq3xi7fnc6] {
    opacity: 1;
}

.ai-panel-actions[b-vq3xi7fnc6] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ai-panel-clear[b-vq3xi7fnc6] {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0.2rem;
    display: flex;
    align-items: center;
}

.ai-panel-clear:hover[b-vq3xi7fnc6] {
    opacity: 1;
}

.ai-panel-clear:disabled[b-vq3xi7fnc6] {
    opacity: 0.3;
    cursor: not-allowed;
}

.assistant-tabs[b-vq3xi7fnc6] {
    display: flex;
    border-bottom: 1px solid var(--pr-border);
    background: var(--pr-surface);
}

.assistant-tab[b-vq3xi7fnc6] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.6rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--pr-text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.assistant-tab.active[b-vq3xi7fnc6] {
    color: var(--pr-secondary);
    border-bottom-color: var(--pr-secondary);
}

.ai-panel-messages[b-vq3xi7fnc6] {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ai-welcome[b-vq3xi7fnc6] {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--pr-text-muted);
}

.ai-welcome-icon[b-vq3xi7fnc6] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--pr-surface-warm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--pr-secondary);
}

.ai-welcome h6[b-vq3xi7fnc6] {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--pr-text);
    margin-bottom: 0.75rem;
}

.ai-welcome p[b-vq3xi7fnc6] {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.ai-welcome ul[b-vq3xi7fnc6] {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.82rem;
}

.ai-welcome ul li[b-vq3xi7fnc6] {
    padding: 0.3rem 0;
}

.ai-welcome ul li[b-vq3xi7fnc6]::before {
    content: '→ ';
    color: var(--pr-secondary);
    font-weight: 600;
}

.ai-suggestions[b-vq3xi7fnc6] {
    margin-top: 1.25rem;
    text-align: left;
}

.ai-suggestions-label[b-vq3xi7fnc6] {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--pr-text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.ai-suggestion-chip[b-vq3xi7fnc6] {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    width: 100%;
    text-align: left;
    background: var(--pr-surface);
    border: 1px solid var(--pr-border-light);
    border-radius: 10px;
    padding: 0.55rem 0.75rem;
    margin-bottom: 0.4rem;
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--pr-text);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.ai-suggestion-chip:hover[b-vq3xi7fnc6] {
    border-color: var(--pr-secondary);
    background: var(--pr-surface-warm);
}

.ai-suggestion-chip svg[b-vq3xi7fnc6] {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--pr-secondary);
}

.chat-message[b-vq3xi7fnc6] {
    display: flex;
    flex-direction: column;
}

.chat-message.user[b-vq3xi7fnc6] {
    align-items: flex-end;
}

.chat-message.assistant[b-vq3xi7fnc6] {
    align-items: flex-start;
}

.agent-label[b-vq3xi7fnc6] {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--pr-text-muted);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.message-bubble[b-vq3xi7fnc6] {
    max-width: 85%;
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-message.user .message-bubble[b-vq3xi7fnc6] {
    background: var(--pr-secondary);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-message.assistant .message-bubble[b-vq3xi7fnc6] {
    background: var(--pr-surface-warm);
    color: var(--pr-text);
    border: 1px solid var(--pr-border-light);
    border-bottom-left-radius: 4px;
}

.assistant-rich-content p[b-vq3xi7fnc6] {
    margin: 0 0 0.55rem;
}

.assistant-rich-content p:last-child[b-vq3xi7fnc6] {
    margin-bottom: 0;
}

.assistant-rich-content ul[b-vq3xi7fnc6],
.assistant-rich-content ol[b-vq3xi7fnc6] {
    margin: 0 0 0.6rem 1rem;
    padding: 0;
}

.assistant-rich-content li[b-vq3xi7fnc6] {
    margin-bottom: 0.25rem;
}

.assistant-rich-content table[b-vq3xi7fnc6] {
    width: 100%;
    border-collapse: collapse;
    margin: 0.45rem 0 0.65rem;
    font-size: 0.83rem;
}

.assistant-rich-content th[b-vq3xi7fnc6],
.assistant-rich-content td[b-vq3xi7fnc6] {
    border: 1px solid var(--pr-border-light);
    padding: 0.38rem 0.45rem;
    text-align: left;
    vertical-align: top;
}

.assistant-rich-content thead th[b-vq3xi7fnc6] {
    background: var(--pr-surface);
    font-weight: 700;
}

.assistant-rich-content strong[b-vq3xi7fnc6] {
    font-weight: 700;
}

.message-bubble.typing[b-vq3xi7fnc6] {
    display: flex;
    gap: 4px;
    padding: 0.75rem 1rem;
}

.message-bubble.typing .dot[b-vq3xi7fnc6] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pr-text-light);
    animation: typingBounce-b-vq3xi7fnc6 1.2s infinite;
}

.message-bubble.typing .dot:nth-child(2)[b-vq3xi7fnc6] {
    animation-delay: 0.2s;
}

.message-bubble.typing .dot:nth-child(3)[b-vq3xi7fnc6] {
    animation-delay: 0.4s;
}

@keyframes typingBounce-b-vq3xi7fnc6 {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
}

.ai-panel-input[b-vq3xi7fnc6] {
    padding: 0.75rem;
    border-top: 1px solid var(--pr-border);
    background: var(--pr-surface);
    flex-shrink: 0;
}

.ai-panel-input .form-control[b-vq3xi7fnc6] {
    border-radius: 20px 0 0 20px;
    border-right: none;
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
}

.ai-panel-input .form-control:focus[b-vq3xi7fnc6] {
    border-color: var(--pr-secondary);
    box-shadow: none;
}

.send-btn[b-vq3xi7fnc6] {
    border-radius: 0 20px 20px 0 !important;
    padding: 0.5rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-btn:disabled[b-vq3xi7fnc6] {
    opacity: 0.5;
    cursor: not-allowed;
}

.steps-panel[b-vq3xi7fnc6] {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    background: var(--pr-surface-warm);
}

.steps-empty[b-vq3xi7fnc6] {
    color: var(--pr-text-muted);
    font-size: 0.84rem;
    padding: 0.5rem;
}

.step-item[b-vq3xi7fnc6] {
    background: var(--pr-surface);
    border: 1px solid var(--pr-border-light);
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
}

.step-time[b-vq3xi7fnc6] {
    font-size: 0.72rem;
    color: var(--pr-text-light);
    margin-bottom: 0.2rem;
}

.step-message[b-vq3xi7fnc6] {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--pr-text);
}

@media (max-width: 768px) {
    .ai-panel[b-vq3xi7fnc6] {
        width: min(100vw, 420px) !important;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ohoxnqq2mp],
.components-reconnect-repeated-attempt-visible[b-ohoxnqq2mp],
.components-reconnect-failed-visible[b-ohoxnqq2mp],
.components-pause-visible[b-ohoxnqq2mp],
.components-resume-failed-visible[b-ohoxnqq2mp],
.components-rejoining-animation[b-ohoxnqq2mp] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-ohoxnqq2mp],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-ohoxnqq2mp],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-ohoxnqq2mp],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-ohoxnqq2mp],
#components-reconnect-modal.components-reconnect-retrying[b-ohoxnqq2mp],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-ohoxnqq2mp],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-ohoxnqq2mp],
#components-reconnect-modal.components-reconnect-failed[b-ohoxnqq2mp],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-ohoxnqq2mp] {
    display: block;
}


#components-reconnect-modal[b-ohoxnqq2mp] {
    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-ohoxnqq2mp 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-ohoxnqq2mp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-ohoxnqq2mp 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-ohoxnqq2mp]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-ohoxnqq2mp 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-ohoxnqq2mp {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-ohoxnqq2mp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-ohoxnqq2mp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-ohoxnqq2mp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-ohoxnqq2mp] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-ohoxnqq2mp] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-ohoxnqq2mp] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-ohoxnqq2mp] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-ohoxnqq2mp] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-ohoxnqq2mp] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-ohoxnqq2mp 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-ohoxnqq2mp] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-ohoxnqq2mp {
    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;
    }
}
