/* _content/IVTracker/Components/Layout/MainLayout.razor.rz.scp.css */
/* TradeScan 365 — MainLayout Scoped Styles (Top Nav) */

/* ── Top Navigation Bar ───────────────────────────────── */
.qs-topnav[b-kf5c302qe9] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topnav-height, 56px);
    background-color: var(--topnav-bg);
    border-bottom: 1px solid var(--topnav-border);
    z-index: 50;
    display: flex;
    align-items: center;
}

/* ── Top Nav Inner Container ──────────────────────────── */
.qs-topnav-inner[b-kf5c302qe9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 0.75rem;
}

@media (min-width: 1024px) {
    .qs-topnav-inner[b-kf5c302qe9] {
        padding: 0 1rem;
    }
}

/* ── Top Nav Left Section ─────────────────────────────── */
.qs-topnav-left[b-kf5c302qe9] {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
    min-width: 0;
    flex: 1;
}

/* ── Brand ────────────────────────────────────────────── */
.qs-topnav-brand[b-kf5c302qe9] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0 1rem 0 0.25rem;
    margin-right: 0.5rem;
    border-right: 1px solid var(--topnav-border);
    height: 100%;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
}

.qs-topnav-logo[b-kf5c302qe9] {
    width: 32px;
    height: 32px;
    background-color: var(--accent-primary);
    border-radius: var(--radius-md, 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    flex-shrink: 0;
}

.qs-topnav-brand-text[b-kf5c302qe9] {
    display: none;
}

@media (min-width: 768px) {
    .qs-topnav-brand-text[b-kf5c302qe9] {
        display: flex;
        flex-direction: column;
    }
}

.qs-topnav-brand-name[b-kf5c302qe9] {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.qs-topnav-brand-edition[b-kf5c302qe9] {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 0.05em;
}

/* ── Desktop Nav Menu (wraps NavMenu) ─────────────────── */
.qs-topnav-menu[b-kf5c302qe9] {
    display: none;
    align-items: center;
    height: 100%;
}

@media (min-width: 1024px) {
    .qs-topnav-menu[b-kf5c302qe9] {
        display: flex;
    }
}

/* ── Top Nav Right Section ────────────────────────────── */
.qs-topnav-right[b-kf5c302qe9] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
}

/* ── Header Buttons ───────────────────────────────────── */
.qs-header-btn[b-kf5c302qe9] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--radius-md, 8px);
    background-color: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    transition: background-color 150ms ease, color 150ms ease;
}

.qs-header-btn:hover[b-kf5c302qe9] {
    background-color: var(--bg-surface-hover);
    color: var(--text-primary);
}

/* ── Mobile Hamburger ─────────────────────────────────── */
.qs-mobile-hamburger[b-kf5c302qe9] {
    display: inline-flex;
}

@media (min-width: 1024px) {
    .qs-mobile-hamburger[b-kf5c302qe9] {
        display: none;
    }
}

/* ── Market Badge ─────────────────────────────────────── */
.qs-market-badge[b-kf5c302qe9] {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-full, 9999px);
    background-color: var(--bullish-bg);
    border: 1px solid var(--bullish);
    font-size: var(--text-xs, 0.75rem);
    font-weight: 600;
    color: var(--bullish);
}

@media (min-width: 640px) {
    .qs-market-badge[b-kf5c302qe9] {
        display: inline-flex;
    }
}

.qs-market-badge-text[b-kf5c302qe9] {
    display: none;
}

@media (min-width: 768px) {
    .qs-market-badge-text[b-kf5c302qe9] {
        display: inline;
    }
}

/* ── Notification Dot ─────────────────────────────────── */
.qs-notification-dot[b-kf5c302qe9] {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 7px;
    height: 7px;
    background-color: var(--danger);
    border-radius: 50%;
    border: 1.5px solid var(--topnav-bg);
}

/* ── User Menu ────────────────────────────────────────── */
.qs-user-menu[b-kf5c302qe9] {
    position: relative;
}

.qs-user-avatar[b-kf5c302qe9] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 150ms ease;
}

.qs-user-avatar:hover[b-kf5c302qe9] {
    opacity: 0.85;
}

.qs-user-dropdown[b-kf5c302qe9] {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 180px;
    background: var(--dropdown-bg);
    border: 1px solid var(--dropdown-border);
    border-radius: var(--radius-md);
    box-shadow: var(--dropdown-shadow);
    padding: 0.375rem 0;
    z-index: 100;
}

.qs-user-menu:hover .qs-user-dropdown[b-kf5c302qe9] {
    display: block;
}

.qs-user-dropdown[b-kf5c302qe9]::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.qs-user-dropdown-item[b-kf5c302qe9] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-primary);
    text-decoration: none;
    transition: background-color 150ms ease;
}

.qs-user-dropdown-item:hover[b-kf5c302qe9] {
    background-color: var(--dropdown-item-hover);
}

.qs-user-dropdown-item.danger[b-kf5c302qe9] {
    color: var(--danger);
}

.qs-user-dropdown-item.danger:hover[b-kf5c302qe9] {
    background-color: var(--danger-bg);
}

.qs-user-dropdown-divider[b-kf5c302qe9] {
    height: 1px;
    background-color: var(--border-subtle);
    margin: 0.25rem 0;
}

.qs-user-info[b-kf5c302qe9] {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 0.25rem;
}

.qs-user-info-name[b-kf5c302qe9] {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--text-heading);
}

.qs-user-info-role[b-kf5c302qe9] {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* ── Mobile Menu Overlay ──────────────────────────────── */
.qs-mobile-menu[b-kf5c302qe9] {
    display: none;
    position: fixed;
    top: var(--topnav-height, 56px);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--topnav-bg);
    z-index: 45;
    overflow-y: auto;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.qs-mobile-menu.open[b-kf5c302qe9] {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

@media (min-width: 1024px) {
    .qs-mobile-menu[b-kf5c302qe9] {
        display: none !important;
    }
}

/* ── Mobile Backdrop ──────────────────────────────────── */
.qs-mobile-backdrop[b-kf5c302qe9] {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 40;
    background-color: rgba(0, 0, 0, 0.5);
}

.qs-mobile-backdrop.open[b-kf5c302qe9] {
    display: block;
}

@media (min-width: 1024px) {
    .qs-mobile-backdrop[b-kf5c302qe9] {
        display: none !important;
    }
}

/* ── Content Area ─────────────────────────────────────── */
.qs-content[b-kf5c302qe9] {
    flex: 1;
    padding: 1.25rem;
    padding-top: calc(var(--topnav-height, 56px) + 1.25rem);
}

@media (min-width: 1024px) {
    .qs-content[b-kf5c302qe9] {
        padding: 1.5rem;
        padding-top: calc(var(--topnav-height, 56px) + 1.5rem);
    }
}

@media (min-width: 1366px) {
    .qs-content[b-kf5c302qe9] {
        padding: 1.75rem;
        padding-top: calc(var(--topnav-height, 56px) + 1.75rem);
    }
}

/* ── Footer ───────────────────────────────────────────── */
.qs-footer[b-kf5c302qe9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    border-top: 1px solid var(--border-subtle);
}
/* _content/IVTracker/Components/Layout/NavMenu.razor.rz.scp.css */
/* TradeScan 365 — NavMenu Scoped Styles */
/* Horizontal top-nav (desktop) + vertical stacked (mobile) */

/* =====================================================================
   DESKTOP — Horizontal navigation with dropdown menus (1024px+)
   ===================================================================== */

.qs-nav-desktop[b-d2lmkbxr6o] {
    display: none;
}

@media (min-width: 1024px) {
    .qs-nav-desktop[b-d2lmkbxr6o] {
        display: flex;
        align-items: center;
        gap: 0;
        height: 100%;
    }
}

/* ── Nav Group (each dropdown section) ────────────────────── */

.qs-nav-group[b-d2lmkbxr6o] {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

/* ── Group Label Button ───────────────────────────────────── */

.qs-nav-group-label[b-d2lmkbxr6o] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    height: 100%;
    padding: 0 0.875rem;
    color: var(--topnav-text);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    font-family: inherit;
    line-height: 1;
    white-space: nowrap;
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.qs-nav-group-label:hover[b-d2lmkbxr6o],
.qs-nav-group:hover .qs-nav-group-label[b-d2lmkbxr6o] {
    color: var(--topnav-text-active);
    background: var(--topnav-hover-bg);
}

/* Active state — group contains the current active page */
.qs-nav-group-label.active[b-d2lmkbxr6o] {
    color: var(--topnav-text-active);
    border-bottom-color: var(--topnav-active-accent);
}

/* ── Section Dot (colored indicator in group labels) ──────── */

.qs-nav-section-dot[b-d2lmkbxr6o] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Chevron (dropdown arrow) ─────────────────────────────── */

.qs-nav-chevron[b-d2lmkbxr6o] {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-fast);
    opacity: 0.5;
    margin-left: 0.125rem;
    flex-shrink: 0;
}

.qs-nav-group:hover .qs-nav-chevron[b-d2lmkbxr6o] {
    transform: rotate(180deg);
    opacity: 0.8;
}

/* =====================================================================
   DROPDOWN PANEL
   ===================================================================== */

.qs-nav-dropdown[b-d2lmkbxr6o] {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--dropdown-bg);
    border: 1px solid var(--dropdown-border);
    border-radius: var(--radius-md);
    box-shadow: var(--dropdown-shadow);
    padding: 0.375rem 0;
    z-index: 100;
}

/* Bridge element — prevents dropdown from closing when mouse
   travels from the label button down to the dropdown panel */
.qs-nav-dropdown[b-d2lmkbxr6o]::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

/* Show dropdown on group hover */
.qs-nav-group:hover .qs-nav-dropdown[b-d2lmkbxr6o] {
    display: block;
}

/* ── Dropdown Item (NavLink) ──────────────────────────────── */

.qs-dropdown-item[b-d2lmkbxr6o] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    color: var(--topnav-text);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.qs-dropdown-item:hover[b-d2lmkbxr6o] {
    background: var(--dropdown-item-hover);
    color: var(--topnav-text-active);
    text-decoration: none;
}

.qs-dropdown-item.active[b-d2lmkbxr6o] {
    background: var(--dropdown-item-active-bg);
    color: var(--dropdown-item-active-text);
}

/* ── Nav Icon (18px SVG icons in dropdown items) ──────────── */

.qs-nav-icon[b-d2lmkbxr6o] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.7;
}

.qs-dropdown-item:hover .qs-nav-icon[b-d2lmkbxr6o],
.qs-dropdown-item.active .qs-nav-icon[b-d2lmkbxr6o] {
    opacity: 1;
}

/* ── Live Badge (pulsing dot, pushed to right edge) ───────── */

.qs-badge-live[b-d2lmkbxr6o] {
    margin-left: auto;
    display: flex;
    align-items: center;
}

/* =====================================================================
   MOBILE — Vertical stacked sections (<1024px)
   ===================================================================== */

.qs-nav-mobile[b-d2lmkbxr6o] {
    display: block;
    padding: 0.75rem;
}

@media (min-width: 1024px) {
    .qs-nav-mobile[b-d2lmkbxr6o] {
        display: none;
    }
}

/* ── Mobile Section ───────────────────────────────────────── */

.qs-nav-mobile .qs-nav-section[b-d2lmkbxr6o] {
    margin-bottom: 1.25rem;
}

/* ── Mobile Section Header ────────────────────────────────── */

.qs-nav-mobile .qs-nav-section-header[b-d2lmkbxr6o] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.75rem;
    margin-bottom: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--topnav-section-text);
}

/* ── Mobile Nav Link ──────────────────────────────────────── */

.qs-nav-mobile .qs-nav-link[b-d2lmkbxr6o] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    color: var(--topnav-text);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    transition: background-color 150ms ease, color 150ms ease;
    border-left: 3px solid transparent;
    margin-bottom: 1px;
}

.qs-nav-mobile .qs-nav-link:hover[b-d2lmkbxr6o] {
    background: var(--topnav-hover-bg);
    color: var(--topnav-text-active);
    text-decoration: none;
}

.qs-nav-mobile .qs-nav-link.active[b-d2lmkbxr6o] {
    background: var(--dropdown-item-active-bg);
    color: var(--dropdown-item-active-text);
    border-left-color: var(--topnav-active-accent);
    font-weight: 600;
}

/* Mobile nav icon states */
.qs-nav-mobile .qs-nav-link:hover .qs-nav-icon[b-d2lmkbxr6o],
.qs-nav-mobile .qs-nav-link.active .qs-nav-icon[b-d2lmkbxr6o] {
    opacity: 1;
}
/* _content/IVTracker/Components/Pages/SectorPulse.razor.rz.scp.css */
/* ── Toolbar ─────────────────────────────────────── */
.sp-toolbar[b-ltsk0a33zc] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.sp-view-toggle[b-ltsk0a33zc] {
    display: flex;
    gap: 0;
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.sp-view-btn[b-ltsk0a33zc] {
    padding: 0.375rem 0.75rem;
    font-size: var(--text-xs);
    font-weight: 500;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
}

.sp-view-btn:hover[b-ltsk0a33zc] {
    color: var(--text-primary);
}

.sp-view-btn.active[b-ltsk0a33zc] {
    background: var(--accent-primary);
    color: #fff;
}

/* ── TradingView Links ──────────────────────────── */
.sp-tv-link[b-ltsk0a33zc] {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.sp-tv-link:hover[b-ltsk0a33zc] {
    color: var(--accent-primary);
}

/* ── OI Badges ──────────────────────────────────── */
.sp-oi-badge[b-ltsk0a33zc] {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    padding: 1px 4px;
    border-radius: 3px;
    line-height: 1.2;
    vertical-align: middle;
    margin-left: 3px;
    white-space: nowrap;
}

/* ── Treemap Container ──────────────────────────── */
.sp-treemap-container[b-ltsk0a33zc] {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-inset);
}

.sp-treemap-tile[b-ltsk0a33zc] {
    position: absolute;
    box-sizing: border-box;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.15s, border-color 0.15s;
    text-align: center;
}

.sp-treemap-tile:hover[b-ltsk0a33zc] {
    opacity: 0.88;
    border-color: rgba(255, 255, 255, 0.7);
}

.sp-treemap-symbol[b-ltsk0a33zc] {
    font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 0 6px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 95%;
    letter-spacing: -0.02em;
}

.sp-treemap-change[b-ltsk0a33zc] {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 0 6px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    margin-top: 1px;
}

/* Neutral tile text: dark text on grey background */
.sp-treemap-text-neutral.sp-treemap-symbol[b-ltsk0a33zc] {
    color: #1a1a2e;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.sp-treemap-text-neutral.sp-treemap-change[b-ltsk0a33zc] {
    color: #333;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.sp-treemap-sector-label[b-ltsk0a33zc] {
    position: absolute;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    pointer-events: none;
    white-space: nowrap;
    padding: 2px 8px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 3px;
    z-index: 5;
    letter-spacing: 0.03em;
}

/* ── Treemap Zoom Controls ──────────────────────── */
.sp-treemap-back[b-ltsk0a33zc] {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10;
    padding: 4px 10px;
    font-size: var(--text-xs);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.sp-treemap-back:hover[b-ltsk0a33zc] {
    background: rgba(0, 0, 0, 0.85);
}

.sp-treemap-sector-title[b-ltsk0a33zc] {
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 10;
    font-size: var(--text-sm);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
    .sp-treemap-container[b-ltsk0a33zc] {
        height: 350px;
    }

    .sp-toolbar[b-ltsk0a33zc] {
        gap: 0.5rem;
    }
}
/* _content/IVTracker/Components/Shared/DisclaimerModal.razor.rz.scp.css */
/* Overlay - covers entire screen, blocks interaction */
.disclaimer-modal-overlay[b-w2tlhws5xj] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

/* Modal card */
.disclaimer-modal-card[b-w2tlhws5xj] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn-b-w2tlhws5xj 0.3s ease-out;
}

@keyframes modalSlideIn-b-w2tlhws5xj {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.disclaimer-header[b-w2tlhws5xj] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.disclaimer-icon[b-w2tlhws5xj] {
    font-size: 2rem;
}

.disclaimer-header h2[b-w2tlhws5xj] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Content */
.disclaimer-content[b-w2tlhws5xj] {
    padding: 2rem;
}

.disclaimer-welcome[b-w2tlhws5xj] {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.disclaimer-statement[b-w2tlhws5xj] {
    background: #f7fafc;
    border-left: 4px solid #4299e1;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.disclaimer-statement p[b-w2tlhws5xj] {
    margin: 0.5rem 0;
    color: #4a5568;
    line-height: 1.6;
}

.disclaimer-acknowledgment-section[b-w2tlhws5xj] {
    margin-bottom: 1.5rem;
}

.disclaimer-label[b-w2tlhws5xj] {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.disclaimer-points[b-w2tlhws5xj] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.disclaimer-point[b-w2tlhws5xj] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.disclaimer-checkmark[b-w2tlhws5xj] {
    color: #48bb78;
    font-weight: bold;
    flex-shrink: 0;
}

/* Checkbox section */
.disclaimer-checkbox-section[b-w2tlhws5xj] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.disclaimer-checkbox-label[b-w2tlhws5xj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: #2d3748;
    user-select: none;
}

.disclaimer-checkbox[b-w2tlhws5xj] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #10b981;
}

/* Error message */
.disclaimer-error[b-w2tlhws5xj] {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #fee;
    border-left: 4px solid #f56565;
    color: #c53030;
    border-radius: 4px;
    font-size: 0.875rem;
}

/* Actions */
.disclaimer-actions[b-w2tlhws5xj] {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.disclaimer-btn[b-w2tlhws5xj] {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.disclaimer-btn:disabled[b-w2tlhws5xj] {
    opacity: 0.5;
    cursor: not-allowed;
}

.disclaimer-btn-secondary[b-w2tlhws5xj] {
    background: #e2e8f0;
    color: #2d3748;
}

.disclaimer-btn-secondary:hover:not(:disabled)[b-w2tlhws5xj] {
    background: #cbd5e0;
}

.disclaimer-btn-primary[b-w2tlhws5xj] {
    background: #10b981;
    color: white;
}

.disclaimer-btn-primary:hover:not(:disabled)[b-w2tlhws5xj] {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Mobile responsive */
@media (max-width: 640px) {
    .disclaimer-modal-card[b-w2tlhws5xj] {
        max-width: 100%;
        margin: 0.5rem;
    }

    .disclaimer-content[b-w2tlhws5xj] {
        padding: 1.5rem;
    }

    .disclaimer-header h2[b-w2tlhws5xj] {
        font-size: 1.25rem;
    }

    .disclaimer-actions[b-w2tlhws5xj] {
        flex-direction: column-reverse;
    }

    .disclaimer-btn[b-w2tlhws5xj] {
        width: 100%;
    }
}
