/* /Components/Layout/MainLayout.razor.rz.scp.css */
[b-agadr6lflo] .drawer-border {
    border-right: 1px solid var(--mud-palette-divider);
}

[b-agadr6lflo] .appbar-border {
    border-bottom: 1px solid var(--mud-palette-divider);
}

[b-agadr6lflo] .fw-600 {
    font-weight: 600 !important;
}

[b-agadr6lflo] .text-transform-none {
    text-transform: none !important;
}

[b-agadr6lflo] .header-user-btn {
    padding: 4px 10px;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    user-select: none;
}

[b-agadr6lflo] .header-user-btn:hover {
    background-color: rgba(127, 127, 127, 0.12);
}

#blazor-error-ui[b-agadr6lflo] {
    background: #ffecec;
    bottom: 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.12);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-agadr6lflo] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/HomePage.razor.rz.scp.css */
    /* ============================================================================
       Scoped stylesheet for HomePage.razor (the public marketing/landing page).
       Every selector in this file maps to a class used in HomePage.razor — verified
       in commit 06c6dee. Section headers below mirror the page sections so a quick
       grep of HomePage.razor will confirm any rule's call site.
       Class prefix `li-` is local to this page only; the cross-page utility
       prefix in wwwroot/app.css is also `li-` but those classes are unrelated.
       ============================================================================ */

    /* ── Theme: light (default) ── */
    .li-page[b-p24flblvj7] {
        --li-bg: #ffffff;
        --li-bg-alt: #f8fafc;
        --li-surface: #ffffff;
        --li-text: #0f172a;
        --li-text-secondary: #64748b;
        --li-border: #e2e8f0;
        --li-primary: #2563eb;
        --li-primary-hover: #1d4ed8;
        --li-card-shadow: 0 1px 3px rgba(0,0,0,0.06);
        --li-card-hover-shadow: 0 12px 32px rgba(0,0,0,0.08);
    }

    /* ── Theme: dark (toggled via JS) ── */
    .li-page.li-dark[b-p24flblvj7] {
        --li-bg: #0f172a;
        --li-bg-alt: #1e293b;
        --li-surface: #1e293b;
        --li-text: #f1f5f9;
        --li-text-secondary: #94a3b8;
        --li-border: #334155;
        --li-primary: #3b82f6;
        --li-primary-hover: #2563eb;
        --li-card-shadow: 0 1px 3px rgba(0,0,0,0.3);
        --li-card-hover-shadow: 0 12px 32px rgba(0,0,0,0.3);
    }

    /* ── Theme toggle button ── */
    .li-theme-toggle[b-p24flblvj7] {
        background: none;
        border: 1px solid var(--li-border);
        border-radius: 8px;
        padding: 0.4rem;
        cursor: pointer;
        color: var(--li-text-secondary);
        display: flex;
        align-items: center;
        transition: all 0.2s;
    }

    .li-theme-toggle:hover[b-p24flblvj7] { border-color: var(--li-text-secondary); color: var(--li-text); }

    /* Show sun in dark mode, moon in light mode */
    .li-page .li-icon-sun[b-p24flblvj7] { display: none; }
    .li-page .li-icon-moon[b-p24flblvj7] { display: block; }
    .li-page.li-dark .li-icon-sun[b-p24flblvj7] { display: block; }
    .li-page.li-dark .li-icon-moon[b-p24flblvj7] { display: none; }

    /* ── Base ── */
    .li-page[b-p24flblvj7] {
        font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
        background: var(--li-bg);
        color: var(--li-text);
        line-height: 1.6;
    }

    .li-container[b-p24flblvj7] {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ── Nav ── */
    .li-nav[b-p24flblvj7] {
        position: sticky;
        top: 0;
        z-index: 100;
        background: var(--li-bg);
        border-bottom: 1px solid var(--li-border);
        backdrop-filter: blur(12px);
    }

    .li-nav-inner[b-p24flblvj7] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 64px;
    }

    .li-nav-inner nav[b-p24flblvj7] {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .li-logo[b-p24flblvj7] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 700;
        font-size: 1.15rem;
        color: var(--li-text);
        text-decoration: none;
    }

    .li-logo-sm[b-p24flblvj7] { font-size: 1rem; font-weight: 600; }

    .li-nav-link[b-p24flblvj7] {
        color: var(--li-text-secondary);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        transition: color 0.15s;
    }

    .li-nav-link:hover[b-p24flblvj7] { color: var(--li-text); }

    /* ── Buttons ── */
    .li-btn[b-p24flblvj7] {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1.25rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        transition: all 0.2s;
        cursor: pointer;
        border: none;
    }

    .li-btn-lg[b-p24flblvj7] { padding: 0.75rem 1.75rem; font-size: 1rem; }

    .li-btn-primary[b-p24flblvj7] {
        background: var(--li-primary);
        color: #fff;
    }

    .li-btn-primary:hover[b-p24flblvj7] {
        background: var(--li-primary-hover);
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(37,99,235,0.3);
        color: #fff;
    }

    .li-btn-ghost[b-p24flblvj7] {
        background: transparent;
        color: var(--li-text-secondary);
        border: 1px solid var(--li-border);
    }

    .li-btn-ghost:hover[b-p24flblvj7] {
        border-color: var(--li-text-secondary);
        color: var(--li-text);
    }

    .li-btn-white[b-p24flblvj7] {
        background: #fff;
        color: #0f172a;
    }

    .li-btn-white:hover[b-p24flblvj7] {
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        color: #0f172a;
    }

    /* ── Hero ── */
    .li-hero[b-p24flblvj7] {
        padding: 6rem 0 5rem;
        text-align: center;
    }

    .li-hero-content[b-p24flblvj7] { max-width: 720px; margin: 0 auto; }

    .li-hero-tag[b-p24flblvj7] {
        display: inline-block;
        padding: 0.35rem 1rem;
        background: rgba(37,99,235,0.08);
        color: var(--li-primary);
        border-radius: 100px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(37,99,235,0.15);
    }

    .li-hero-title[b-p24flblvj7] {
        font-size: 3.25rem;
        font-weight: 800;
        line-height: 1.12;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .li-gradient-text[b-p24flblvj7] {
        background: linear-gradient(135deg, #2563eb, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .li-hero-desc[b-p24flblvj7] {
        font-size: 1.15rem;
        color: var(--li-text-secondary);
        margin-bottom: 2.5rem;
        line-height: 1.7;
    }

    .li-hero-actions[b-p24flblvj7] {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
        margin-bottom: 3.5rem;
    }

    .li-hero-stats[b-p24flblvj7] {
        display: flex;
        justify-content: center;
        gap: 2rem;
        align-items: center;
    }

    .li-stat[b-p24flblvj7] { text-align: center; }
    .li-stat strong[b-p24flblvj7] { display: block; font-size: 1.1rem; color: var(--li-text); }
    .li-stat span[b-p24flblvj7] { font-size: 0.8rem; color: var(--li-text-secondary); }
    .li-stat-divider[b-p24flblvj7] { width: 1px; height: 32px; background: var(--li-border); }

    /* ── Sections ── */
    .li-section[b-p24flblvj7] { padding: 5rem 0; }
    .li-section-alt[b-p24flblvj7] { background: var(--li-bg-alt); }

    .li-section-title[b-p24flblvj7] {
        text-align: center;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        letter-spacing: -0.01em;
    }

    .li-section-desc[b-p24flblvj7] {
        text-align: center;
        color: var(--li-text-secondary);
        max-width: 600px;
        margin: 0 auto 3rem;
        font-size: 1.05rem;
    }

    /* ── Feature Cards ── */
    .li-features-grid[b-p24flblvj7] {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .li-feature-card[b-p24flblvj7] {
        padding: 2rem;
        background: var(--li-surface);
        border: 1px solid var(--li-border);
        border-radius: 12px;
        transition: all 0.25s;
        box-shadow: var(--li-card-shadow);
    }

    .li-feature-card:hover[b-p24flblvj7] {
        border-color: var(--li-primary);
        box-shadow: var(--li-card-hover-shadow);
        transform: translateY(-2px);
    }

    .li-feature-card h3[b-p24flblvj7] {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .li-feature-card > p[b-p24flblvj7] {
        color: var(--li-text-secondary);
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .li-feature-icon[b-p24flblvj7] {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .li-icon-blue[b-p24flblvj7] { background: rgba(37,99,235,0.1); color: #2563eb; }
    .li-icon-green[b-p24flblvj7] { background: rgba(22,163,74,0.1); color: #16a34a; }
    .li-icon-purple[b-p24flblvj7] { background: rgba(139,92,246,0.1); color: #8b5cf6; }
    .li-icon-amber[b-p24flblvj7] { background: rgba(245,158,11,0.1); color: #f59e0b; }

    .li-feature-list[b-p24flblvj7] {
        list-style: none;
        padding: 0;
        margin: 0 0 1.25rem;
    }

    .li-feature-list li[b-p24flblvj7] {
        padding: 0.3rem 0;
        font-size: 0.875rem;
        color: var(--li-text-secondary);
    }

    .li-feature-list li[b-p24flblvj7]::before {
        content: "✓ ";
        color: var(--li-primary);
        font-weight: 700;
    }

    .li-feature-link[b-p24flblvj7] {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--li-primary);
        text-decoration: none;
    }

    .li-feature-link:hover[b-p24flblvj7] { text-decoration: underline; }

    /* ── Steps ── */
    .li-steps[b-p24flblvj7] {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        text-align: center;
    }

    .li-step h3[b-p24flblvj7] { margin: 1rem 0 0.5rem; font-size: 1.1rem; }
    .li-step p[b-p24flblvj7] { color: var(--li-text-secondary); font-size: 0.95rem; }

    .li-step-num[b-p24flblvj7] {
        width: 52px;
        height: 52px;
        margin: 0 auto;
        background: linear-gradient(135deg, #2563eb, #8b5cf6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.25rem;
        font-weight: 700;
    }

    /* ── Security ── */
    .li-security-grid[b-p24flblvj7] {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .li-security-item[b-p24flblvj7] {
        padding: 1.25rem;
        background: var(--li-surface);
        border: 1px solid var(--li-border);
        border-radius: 10px;
    }

    .li-security-item strong[b-p24flblvj7] {
        display: block;
        margin-bottom: 0.25rem;
        font-size: 0.95rem;
    }

    .li-security-item span[b-p24flblvj7] {
        font-size: 0.85rem;
        color: var(--li-text-secondary);
    }

    /* ── CTA ── */
    .li-cta[b-p24flblvj7] { padding: 5rem 0; }

    .li-cta-box[b-p24flblvj7] {
        background: linear-gradient(135deg, #2563eb, #7c3aed);
        color: #fff;
        text-align: center;
        padding: 4rem 2rem;
        border-radius: 16px;
    }

    .li-cta-box h2[b-p24flblvj7] {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

    .li-cta-box p[b-p24flblvj7] {
        color: rgba(255,255,255,0.8);
        margin-bottom: 1.5rem;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    /* ── Footer ── */
    .li-footer[b-p24flblvj7] {
        padding: 2rem 0;
        border-top: 1px solid var(--li-border);
    }

    .li-footer-inner[b-p24flblvj7] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .li-footer-links[b-p24flblvj7] {
        display: flex;
        gap: 1.5rem;
    }

    .li-footer-links a[b-p24flblvj7] {
        color: var(--li-text-secondary);
        text-decoration: none;
        font-size: 0.85rem;
    }

    .li-footer-links a:hover[b-p24flblvj7] { color: var(--li-text); }

    .li-footer-copy[b-p24flblvj7] {
        font-size: 0.8rem;
        color: var(--li-text-secondary);
        margin: 0;
    }

    /* ── Responsive ── */
    @@media (max-width: 768px) {
        .li-hero-title[b-p24flblvj7] { font-size: 2.25rem; }
        .li-hero-actions[b-p24flblvj7] { flex-direction: column; align-items: center; }
        .li-hero-stats[b-p24flblvj7] { flex-direction: column; gap: 1rem; }
        .li-stat-divider[b-p24flblvj7] { width: 40px; height: 1px; }
        .li-features-grid[b-p24flblvj7] { grid-template-columns: 1fr; }
        .li-steps[b-p24flblvj7] { grid-template-columns: 1fr; }
        .li-security-grid[b-p24flblvj7] { grid-template-columns: 1fr; }
        .li-nav-inner nav .li-nav-link[b-p24flblvj7] { display: none; }
    }
/* /Components/Pages/MetricsPage.razor.rz.scp.css */
/* Scoped styles for MetricsPage.razor */

.metrics-filter[b-pdk9ywmpuz] {
    width: 200px;
}

/* Responsive summary-card row: as many ~170px columns as fit, equal width,
   wrapping down to a single column on narrow screens. */
.metrics-summary-grid[b-pdk9ywmpuz] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px;
}

.metrics-card[b-pdk9ywmpuz] {
    border: 1px solid var(--mud-palette-divider);
    height: 100%;
}

.metrics-table-wrap[b-pdk9ywmpuz] {
    border: 1px solid var(--mud-palette-divider);
}

.metrics-col-center[b-pdk9ywmpuz] {
    text-align: center;
}

.metrics-filename[b-pdk9ywmpuz] {
    max-width: 300px;
}

.metrics-filename-text[b-pdk9ywmpuz] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* /Components/Pages/ProfilePage.razor.rz.scp.css */
/* Scoped styles for ProfilePage.razor and its extracted sub-components in
   Profile/. Uses ::deep so the rules pierce through ApiKeySection and
   BillingActivityTable (separate scopes) and still apply to their markup. */

[b-w52q6riv1z] .profile-card {
    border: 1px solid var(--mud-palette-divider);
    height: 100%;
}

[b-w52q6riv1z] .profile-card-full {
    border: 1px solid var(--mud-palette-divider);
}

[b-w52q6riv1z] .profile-section-title {
    font-weight: 600;
}

[b-w52q6riv1z] .profile-table {
    background: transparent;
}

[b-w52q6riv1z] .profile-table td {
    border: none;
}

[b-w52q6riv1z] .profile-table td.profile-label {
    font-weight: 600;
}

[b-w52q6riv1z] .profile-value-success {
    color: var(--mud-palette-success);
    font-weight: 600;
}

[b-w52q6riv1z] .profile-value-info {
    color: var(--mud-palette-info);
    font-weight: 600;
}

[b-w52q6riv1z] .profile-api-key-input {
    font-family: monospace;
}

[b-w52q6riv1z] .profile-filter {
    width: 250px;
}

/* Long reference IDs in the billing table — truncate with ellipsis. */
[b-w52q6riv1z] .tx-ref {
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* /Features/Notebooks/Components/ChatPanel.razor.rz.scp.css */
/* Chat panel layout
   ----------------------------------------------------------------------------
   Self-contained styling for the RAG chat pane: the scrollable message list,
   user/assistant bubbles with a Material-style tail, and small metadata row.
   Bubble widths cap at 75% of the panel so threads stay readable; the tail
   (one squared corner per role) makes the speaker direction obvious at a
   glance without an avatar.
*/

.chat-messages[b-26bfhqdjkz] {
    /* Viewport-aware instead of a fixed 360px: grows with the window, floored so
       it stays usable on short screens and capped so long threads don't push the
       input off-screen. Resolves to a definite length, so the empty-state's
       height:100% still works. */
    height: clamp(320px, 55vh, 600px);
    overflow-y: auto;
    scroll-behavior: smooth;
}

.chat-row[b-26bfhqdjkz] {
    margin-bottom: 14px;
}

.chat-row.user[b-26bfhqdjkz] {
    align-items: flex-end;
}

.chat-row.assistant[b-26bfhqdjkz] {
    align-items: flex-start;
}

.chat-bubble[b-26bfhqdjkz] {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 14px;
    line-height: 1.45;
    word-break: break-word;
}

.chat-bubble.user[b-26bfhqdjkz] {
    background: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
    border-bottom-right-radius: 4px;
}

.chat-bubble.assistant[b-26bfhqdjkz] {
    background: var(--mud-palette-background-grey);
    border: 1px solid var(--mud-palette-divider);
    color: var(--mud-palette-text-primary);
    border-bottom-left-radius: 4px;
}

.chat-meta[b-26bfhqdjkz] {
    font-size: 0.7rem;
    color: var(--mud-palette-text-secondary);
    margin-top: 4px;
    padding: 0 4px;
}

.chat-input-row[b-26bfhqdjkz] {
    border-top: 1px solid var(--mud-palette-divider);
}

.chat-bubble.assistant :deep(p:last-child)[b-26bfhqdjkz] {
    margin-bottom: 0;
}
/* /Features/Notebooks/Pages/NotebookDocumentsPage.razor.rz.scp.css */
/* Markdown rendering inside chat bubbles. */
.markdown-content[b-fbauaaiy53]  h1,
.markdown-content[b-fbauaaiy53]  h2,
.markdown-content[b-fbauaaiy53]  h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.markdown-content[b-fbauaaiy53]  h2 {
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--mud-palette-divider);
    padding-bottom: 0.3rem;
}

.markdown-content[b-fbauaaiy53]  h3 {
    font-size: 1rem;
    font-weight: 600;
}

.markdown-content[b-fbauaaiy53]  p {
    margin-bottom: 0.5rem;
}

.markdown-content[b-fbauaaiy53]  ul,
.markdown-content[b-fbauaaiy53]  ol {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
}

.markdown-content[b-fbauaaiy53]  li {
    margin-bottom: 0.25rem;
}

.markdown-content[b-fbauaaiy53]  strong {
    font-weight: 600;
}

.markdown-content[b-fbauaaiy53]  code {
    background-color: var(--mud-palette-background-grey);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-size: 0.9em;
}

.markdown-content[b-fbauaaiy53]  pre {
    background-color: var(--mud-palette-background-grey);
    padding: 0.75rem;
    border-radius: 5px;
    overflow-x: auto;
}
/* /Features/ResumeScreening/Components/AiLogsTable.razor.rz.scp.css */
/* Shared <pre> styling for AI-log expanded payloads (system prompt, user
   prompt, response). Replaces the four inline style blocks the page had. */
.ai-log-payload[b-rzq32l2unl] {
    white-space: pre-wrap;
    font-size: 0.75rem;
    max-height: 200px;
    overflow-y: auto;
    background: var(--mud-palette-surface);
    padding: 8px;
    border-radius: 4px;
}
/* /Features/ResumeScreening/Pages/ResumeDetailPage.razor.rz.scp.css */
/* Score circle on the resume detail header — driven by .score-success / -warning /
   -error modifier classes added by the parent based on OverallScore. */
.score-circle[b-b5oyq3ey12] {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border: 8px solid;
}

.score-circle.score-success[b-b5oyq3ey12] {
    border-color: var(--mud-palette-success);
    background-color: var(--mud-palette-success-lighten);
}

.score-circle.score-warning[b-b5oyq3ey12] {
    border-color: var(--mud-palette-warning);
    background-color: var(--mud-palette-warning-lighten);
}

.score-circle.score-error[b-b5oyq3ey12] {
    border-color: var(--mud-palette-error);
    background-color: var(--mud-palette-error-lighten);
}

.score-value[b-b5oyq3ey12] {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.score-label[b-b5oyq3ey12] {
    font-size: 0.9rem;
    text-transform: uppercase;
}
