/* /Components/Layout/MainLayout.razor.rz.scp.css */
.main-shell[b-84sprn5167] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: #1c1e22;
}
.top-bar[b-84sprn5167] {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: #1a1d21;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.top-bar-left[b-84sprn5167] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-home-link[b-84sprn5167] {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.app-logo[b-84sprn5167] {
    color: #ffa600;
}

.app-name[b-84sprn5167] {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.top-bar-right[b-84sprn5167] {
    display: flex;
    align-items: center;
}

.main-body[b-84sprn5167] {
    flex: 1;
    overflow: hidden;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 0;
}

.app-sidebar[b-84sprn5167] {
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
}

.app-content[b-84sprn5167] {
    min-width: 0;
    overflow: auto;
    padding: 24px;
}

.main-body.chat-mode[b-84sprn5167] {
    grid-template-columns: minmax(0, 1fr);
}

.main-body.chat-mode .app-content[b-84sprn5167] {
    padding: 0;
    overflow: hidden;
}

.user-menu[b-84sprn5167] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-name[b-84sprn5167] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@media (max-width: 900px) {
    .main-body[b-84sprn5167] {
        grid-template-columns: 1fr;
    }

    .app-sidebar[b-84sprn5167] {
        display: none;
    }

    .app-content[b-84sprn5167] {
        padding: 16px;
    }
}

#blazor-error-ui[b-84sprn5167] {
    color-scheme: light only;
    background: lightyellow;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    padding: 0.6rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-84sprn5167] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* ── App footer ── */
.app-footer[b-84sprn5167] {
    flex-shrink: 0;
    text-align: center;
    padding: 8px 24px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    background: #1a1d21;
    letter-spacing: 0.2px;
}

.app-footer a[b-84sprn5167] {
    color: rgba(255, 166, 0, 0.8);
    text-decoration: none;
}

.app-footer a:hover[b-84sprn5167] {
    color: #ffa600;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-scrollable[b-0khxikmnzj] {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px;
}

.nav-section-label[b-0khxikmnzj] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #64748b;
}

.nav[b-0khxikmnzj] {
    gap: 8px;
}

.nav-scrollable[b-0khxikmnzj]  .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    padding: 12px 14px;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.nav-scrollable[b-0khxikmnzj]  .nav-link:hover {
    background: #fff3d0;
    color: #7a3e00;
    transform: translateX(2px);
}

.nav-scrollable[b-0khxikmnzj]  a.active {
    background: linear-gradient(135deg, #ffa600 0%, #ff7c00 100%);
    color: #1a0a00;
    box-shadow: 0 12px 24px rgba(255, 166, 0, 0.28);
}

.nav-icon[b-0khxikmnzj] {
    width: 1.5rem;
    text-align: center;
    font-size: 1rem;
}

.nav-card[b-0khxikmnzj] {
    margin-top: 4px;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
    color: #e5eefb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.nav-card-title[b-0khxikmnzj] {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.nav-card-text[b-0khxikmnzj] {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(226, 232, 240, 0.8);
    margin-bottom: 12px;
}

.nav-card-link[b-0khxikmnzj] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.nav-card-link:hover[b-0khxikmnzj] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-dsh89n417s],
.components-reconnect-repeated-attempt-visible[b-dsh89n417s],
.components-reconnect-failed-visible[b-dsh89n417s],
.components-pause-visible[b-dsh89n417s],
.components-resume-failed-visible[b-dsh89n417s],
.components-rejoining-animation[b-dsh89n417s] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-dsh89n417s],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-dsh89n417s],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-dsh89n417s],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-dsh89n417s],
#components-reconnect-modal.components-reconnect-retrying[b-dsh89n417s],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-dsh89n417s],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-dsh89n417s],
#components-reconnect-modal.components-reconnect-failed[b-dsh89n417s],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-dsh89n417s] {
    display: block;
}


#components-reconnect-modal[b-dsh89n417s] {
    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-dsh89n417s 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-dsh89n417s 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-dsh89n417s 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-dsh89n417s]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-dsh89n417s 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-dsh89n417s {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-dsh89n417s {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-dsh89n417s {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-dsh89n417s] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-dsh89n417s] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-dsh89n417s] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-dsh89n417s] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-dsh89n417s] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-dsh89n417s] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-dsh89n417s] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-dsh89n417s 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-dsh89n417s] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-dsh89n417s {
    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;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-page[b-vo3jhmwg34] {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px 64px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* ── Hero ── */
.hero[b-vo3jhmwg34] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hero-eyebrow[b-vo3jhmwg34] {
    display: flex;
}

.hero-badge[b-vo3jhmwg34] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 166, 0, 0.12);
    border: 1px solid rgba(255, 166, 0, 0.3);
    color: #fbbf24;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.hero-title[b-vo3jhmwg34] {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #e2e8f0;
    margin: 0;
    letter-spacing: -0.5px;
}

.hero-accent[b-vo3jhmwg34] {
    color: #ffa600;
}

.hero-sub[b-vo3jhmwg34] {
    font-size: 16px;
    line-height: 1.7;
    color: #9ca3af;
    max-width: 600px;
    margin: 0;
}

.hero-cta[b-vo3jhmwg34] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.cta-primary[b-vo3jhmwg34] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffa600;
    color: #1a0a00;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(255, 166, 0, 0.35);
    transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}

.cta-primary:hover[b-vo3jhmwg34] {
    background: #e09400;
    box-shadow: 0 6px 20px rgba(255, 166, 0, 0.45);
    transform: translateY(-1px);
    color: #1a0a00;
    text-decoration: none;
}

.cta-secondary[b-vo3jhmwg34] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #23272e;
    color: #d1d5db;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #2e3138;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.cta-secondary:hover[b-vo3jhmwg34] {
    background: #2e3138;
    border-color: #4b5563;
    transform: translateY(-1px);
    color: #e2e8f0;
    text-decoration: none;
}

/* ── Stats row ── */
.stats-row[b-vo3jhmwg34] {
    display: flex;
    align-items: center;
    gap: 0;
    background: #23272e;
    border: 1px solid #2e3138;
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.stat-item[b-vo3jhmwg34] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.stat-number[b-vo3jhmwg34] {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffa600;
    line-height: 1;
}

.stat-label[b-vo3jhmwg34] {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.stat-divider[b-vo3jhmwg34] {
    width: 1px;
    height: 40px;
    background: #2e3138;
    flex-shrink: 0;
    margin: 0 8px;
}

/* ── Features ── */
.features[b-vo3jhmwg34] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card[b-vo3jhmwg34] {
    background: #23272e;
    border: 1px solid #2e3138;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.feature-card:hover[b-vo3jhmwg34] {
    box-shadow: 0 8px 24px rgba(255, 166, 0, 0.1);
    border-color: rgba(255, 166, 0, 0.3);
    transform: translateY(-2px);
}

.feature-icon[b-vo3jhmwg34] {
    width: 44px;
    height: 44px;
    background: rgba(255, 166, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
}

.feature-card h3[b-vo3jhmwg34] {
    font-size: 15px;
    font-weight: 700;
    color: #e2e8f0;
    margin: 0;
}

.feature-card p[b-vo3jhmwg34] {
    font-size: 13.5px;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

/* ── CTA Banner ── */
.cta-banner[b-vo3jhmwg34] {
    background: linear-gradient(135deg, #1a1d21 0%, #2d2f35 100%);
    border-radius: 20px;
    padding: 40px 40px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.cta-banner-inner[b-vo3jhmwg34] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-banner-text h2[b-vo3jhmwg34] {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin: 0 0 6px;
}

.cta-banner-text p[b-vo3jhmwg34] {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .features[b-vo3jhmwg34] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .home-page[b-vo3jhmwg34] {
        padding: 32px 16px 48px;
        gap: 32px;
    }

    .features[b-vo3jhmwg34] {
        grid-template-columns: 1fr;
    }

    .stats-row[b-vo3jhmwg34] {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-divider[b-vo3jhmwg34] {
        width: 80px;
        height: 1px;
        margin: 0;
    }

    .cta-banner[b-vo3jhmwg34] {
        padding: 28px 24px;
    }

    .cta-banner-inner[b-vo3jhmwg34] {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* /Components/Shared/ChatInput.razor.rz.scp.css */
.chat-input-container[b-3yfma4yu0p] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.attach-btn[b-3yfma4yu0p],
.send-btn[b-3yfma4yu0p] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: white;
    color: #475569;
}

.attach-btn.active[b-3yfma4yu0p] {
    background: #eef2ff;
    color: #4338ca;
    border-color: rgba(79, 70, 229, 0.3);
}

.file-chip[b-3yfma4yu0p] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 0.78rem;
    max-width: 180px;
}

.file-chip-preview[b-3yfma4yu0p] {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.file-chip-icon[b-3yfma4yu0p] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #94a3b8;
}

.file-chip .file-name[b-3yfma4yu0p] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.file-chip .file-remove[b-3yfma4yu0p] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    color: #94a3b8;
    flex-shrink: 0;
}

.file-chip .file-remove:hover[b-3yfma4yu0p] {
    color: #ef4444;
}
/* /Components/Shared/ChatLayout.razor.rz.scp.css */
/* ChatLayout styles are in wwwroot/css/chat.css */
/* /Components/Shared/FileUpload.razor.rz.scp.css */
.file-upload-zone[b-k8whgnd14o] {
    position: relative;
    border: 2px dashed var(--border-color, #e5e7eb);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    transition: border-color 0.15s, background 0.15s;
    margin-bottom: 8px;
    cursor: pointer;
}

.file-upload-zone.dragging[b-k8whgnd14o] {
    border-color: var(--primary-color, #4f46e5);
    background: rgba(79, 70, 229, 0.04);
}

.file-upload-input[b-k8whgnd14o] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.file-upload-content[b-k8whgnd14o] {
    display: block;
    cursor: pointer;
}

.browse-link[b-k8whgnd14o] {
    color: var(--primary-color, #4f46e5);
    font-weight: 600;
}
/* /Components/Shared/MessageBubble.razor.rz.scp.css */
.message-bubble[b-tqmuol8v0g] {
    margin: 0 auto;
    padding: 0 24px;
    margin-bottom: 16px;
}
/* /Components/Shared/UserMenu.razor.rz.scp.css */
/* UserMenu styles are in wwwroot/css/chat.css */
