@import '_content/BlazorColorPicker/BlazorColorPicker.bundle.scp.css';
@import '_content/WMBlazorOverlayScrollbars/WMBlazorOverlayScrollbars.bundle.scp.css';
@import '_content/WMBlazorSlickCarousel/WMBlazorSlickCarousel.bundle.scp.css';

/* /Components/CustomComponents/SortableLists/SortableList.razor.rz.scp.css */
/* 
  you need the ::deep identifier if you are using scoped styles like this
  because scoped styles are only applied to markup in the component, not
  to the markup inside the render fragment.
*/

[b-ee2q9kct6i] .sortable-ghost {
  visibility: hidden;
}

[b-ee2q9kct6i] .sortable-fallback {
  opacity: 1 !important
}
/* /Components/CustomComponents/TranscriptionPanel/TranscriptionPanel.razor.rz.scp.css */
.Exsentra-icon[b-s3t9b09tlh] {
    width: 32px;
    height: 32px;
}

.Exsentra-icon-minimal[b-s3t9b09tlh] {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
}

.WhiteText[b-s3t9b09tlh] {
    color: white;
}

.transcription-panel[b-s3t9b09tlh] {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

    .transcription-panel.Expanded[b-s3t9b09tlh] {
        width: 400px;
        height: 650px;
        background: white;
        border: 2px solid rgb(17, 28, 67);
        border-radius: 8px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .transcription-panel.Minimal[b-s3t9b09tlh] {
        width: 50px;
        height: 200px;
        background: rgb(17, 28, 67);
        border: 2px solid rgb(17, 28, 67);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        cursor: pointer;
    }

        .transcription-panel.Minimal.latched-left[b-s3t9b09tlh] {
            border-radius: 0 8px 8px 0;
            left: 0 !important;
        }

        .transcription-panel.Minimal.latched-right[b-s3t9b09tlh] {
            border-radius: 8px 0 0 8px;
            right: 0 !important;
            left: auto !important;
        }

    .transcription-panel.hidden[b-s3t9b09tlh] {
        opacity: 0;
        pointer-events: none;
    }

    .transcription-panel.visible[b-s3t9b09tlh] {
        opacity: 1;
        pointer-events: auto;
    }

.transcription-panel-header[b-s3t9b09tlh] {
    padding: 12px 16px;
    background: rgb(17, 28, 67);
    color: white;
    cursor: move;
    user-select: none;
}

.transcription-panel-content[b-s3t9b09tlh] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 16px;
    gap: 12px;
}

.minimal-tab[b-s3t9b09tlh] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    padding: 12px;
    padding-block: 10px;
}

.minimal-tab-content[b-s3t9b09tlh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.minimal-tab-text[b-s3t9b09tlh] {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    white-space: nowrap;
}

    .minimal-tab-text span[b-s3t9b09tlh] {
        display: inline-block;
    }

.pulse-minimal[b-s3t9b09tlh] {
    margin-top: 8px;
    color: #f44336;
}

.recording-indicator[b-s3t9b09tlh] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: #ffebee;
    border-radius: 4px;
}

.identification-prompt[b-s3t9b09tlh] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: #e3f2fd;
    border-radius: 4px;
    animation: fadeIn-b-s3t9b09tlh 0.5s ease-in;
}

.identification-complete[b-s3t9b09tlh] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: #e8f5e9;
    border-radius: 4px;
    animation: fadeIn-b-s3t9b09tlh 0.5s ease-in;
}

.microphone-selector[b-s3t9b09tlh] {
    width: 100%;
}

@keyframes fadeIn-b-s3t9b09tlh {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-b-s3t9b09tlh {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.pulse[b-s3t9b09tlh] {
    animation: pulse-b-s3t9b09tlh 1.1s ease-in-out infinite;
}

.pulse-minimal[b-s3t9b09tlh] {
    animation: pulse-b-s3t9b09tlh 1.1s ease-in-out infinite;
}

.transcription-controls[b-s3t9b09tlh] {
    display: flex;
    gap: 8px;
}

.transcription-lines[b-s3t9b09tlh] {
    flex: 1;
    overflow-y: auto;
    border: 1px solid var(--mud-palette-divider);
    border-radius: 4px;
    padding: 12px;
    background: #fafafa;
}

.transcription-line[b-s3t9b09tlh] {
    margin-bottom: 8px;
    padding: 8px;
    background: white;
    border-radius: 4px;
}

    .transcription-line.partial[b-s3t9b09tlh] {
        background: #f5f5f5;
        font-style: italic;
    }

.transcription-footer[b-s3t9b09tlh] {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-739djkm78g] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-739djkm78g] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ProfileMenu.razor.rz.scp.css */
.profile-trigger[b-ido15y7nbk] {
    cursor: pointer;
    border-radius: 10px;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    transition: background 0.15s ease;
    padding: 6px 10px !important;
}

    .profile-trigger:hover[b-ido15y7nbk] {
        background: rgba(0, 0, 0, 0.05);
    }

.profile-dropdown-popover[b-ido15y7nbk] {
    border-radius: 14px !important;
    overflow: hidden;
    min-width: 260px !important;
    max-width: 260px !important;
    width: 260px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14) !important;
    margin-top: 6px;
}

.profile-dropdown-header[b-ido15y7nbk] {
    padding: 24px 20px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

    .profile-dropdown-header .mud-avatar[b-ido15y7nbk] {
        width: 64px !important;
        height: 64px !important;
        margin: 0 auto 12px;
        border: 3px solid rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    }

    .profile-dropdown-header p.fw-semibold[b-ido15y7nbk] {
        font-size: 16px !important;
        margin-bottom: 2px !important;
        color: var(--default-text-color);
    }

    .profile-dropdown-header p.op-7[b-ido15y7nbk] {
        font-size: 12px !important;
        margin-bottom: 10px !important;
        opacity: 0.6;
    }

    .profile-dropdown-header .mud-chip[b-ido15y7nbk] {
        font-size: 11px !important;
        height: 24px !important;
        padding: 0 12px !important;
        border-radius: 20px !important;
    }

.profile-section-label[b-ido15y7nbk] {
    padding: 14px 20px 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--default-text-color);
    opacity: 0.45;
}

.profile-lang-wrapper[b-ido15y7nbk] {
    padding: 2px 8px 6px;
}

    .profile-lang-wrapper .mud-menu[b-ido15y7nbk] {
        width: 100%;
    }

    .profile-lang-wrapper .mud-button-root[b-ido15y7nbk] {
        width: 100%;
        justify-content: flex-start !important;
        padding: 10px 12px !important;
        border-radius: 8px !important;
        font-size: 14px;
        color: var(--default-text-color) !important;
        gap: 10px;
        transition: background 0.15s;
    }

        .profile-lang-wrapper .mud-button-root:hover[b-ido15y7nbk] {
            background: rgba(0, 0, 0, 0.05) !important;
        }

    .profile-lang-wrapper .mud-icon-root[b-ido15y7nbk] {
        font-size: 18px !important;
        opacity: 0.7;
    }

.profile-menu-item[b-ido15y7nbk] {
    padding: 0 !important;
}

    .profile-menu-item .mud-menu-item[b-ido15y7nbk] {
        padding: 10px 20px !important;
        font-size: 14px !important;
        gap: 10px;
        transition: background 0.15s;
        min-height: 44px;
    }

        .profile-menu-item .mud-menu-item:hover[b-ido15y7nbk] {
            background: rgba(0, 0, 0, 0.04) !important;
        }

.profile-logout-item .mud-menu-item[b-ido15y7nbk] {
    padding: 12px 20px !important;
    margin: 4px 0 4px;
}

.profile-dropdown-popover .mud-divider[b-ido15y7nbk] {
    margin: 4px 0 !important;
    opacity: 0.6;
}

[data-theme-mode="dark"] .profile-trigger[b-ido15y7nbk] {
    border-color: rgba(255, 255, 255, 0.1);
}

    [data-theme-mode="dark"] .profile-trigger:hover[b-ido15y7nbk] {
        background: rgba(255, 255, 255, 0.06);
    }

[data-theme-mode="dark"] .profile-dropdown-header[b-ido15y7nbk] {
    background: rgba(255, 255, 255, 0.03);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme-mode="dark"] .profile-lang-wrapper .mud-button-root:hover[b-ido15y7nbk] {
    background: rgba(255, 255, 255, 0.06) !important;
}

[data-theme-mode="dark"] .profile-menu-item .mud-menu-item:hover[b-ido15y7nbk] {
    background: rgba(255, 255, 255, 0.05) !important;
}


.profile-lang-select-wrapper[b-ido15y7nbk] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 10px;
}

.profile-lang-select[b-ido15y7nbk] {
    flex: 1;
    padding: 7px 10px;
    border-radius: 8px;
    border: 0.5px solid rgba(0, 0, 0, 0.15);
    font-size: 14px;
    background: transparent;
    color: var(--default-text-color);
    cursor: pointer;
    outline: none;
}

    .profile-lang-select:hover[b-ido15y7nbk] {
        border-color: rgba(0, 0, 0, 0.3);
    }

.profile-lang-icon[b-ido15y7nbk] {
    opacity: 0.6;
    font-size: 18px !important;
}

.profile-version-value[b-ido15y7nbk] {
    padding: 2px 20px 12px;
    font-size: 13px;
    opacity: 0.7;
}
/* /Components/Pages/ContactMoments/Components/ReviewSection.razor.rz.scp.css */
.review-section-container[b-ea2t74k42v] {
    overflow-x: hidden;
    max-width: 100%;
}

.review-card[b-ea2t74k42v] {
    max-width: 100%;
    overflow: hidden;
}

.review-content-paper[b-ea2t74k42v] {
    background-color: var(--mud-palette-background-grey);
    overflow-x: hidden;
    max-width: 100%;
}

.markdown-content[b-ea2t74k42v] {
    line-height: 1.6;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

    .markdown-content *[b-ea2t74k42v] {
        max-width: 100%;
        box-sizing: border-box;
    }

    .markdown-content h1[b-ea2t74k42v] {
        font-size: 1.5rem;
        font-weight: 600;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
        color: var(--mud-palette-text-primary);
    }

    .markdown-content h2[b-ea2t74k42v] {
        font-size: 1.25rem;
        font-weight: 600;
        margin-top: 1.25rem;
        margin-bottom: 0.5rem;
        color: var(--mud-palette-text-primary);
    }

    .markdown-content h3[b-ea2t74k42v] {
        font-size: 1.1rem;
        font-weight: 600;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        color: var(--mud-palette-text-primary);
    }

    .markdown-content p[b-ea2t74k42v] {
        margin-bottom: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .markdown-content strong[b-ea2t74k42v] {
        font-weight: 600;
        color: var(--mud-palette-text-primary);
        word-wrap: break-word;
    }

    .markdown-content ul[b-ea2t74k42v],
    .markdown-content ol[b-ea2t74k42v] {
        margin-bottom: 0.75rem;
        padding-left: 1.5rem;
        max-width: 100%;
    }

    .markdown-content li[b-ea2t74k42v] {
        margin-bottom: 0.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .markdown-content blockquote[b-ea2t74k42v] {
        border-left: 3px solid var(--mud-palette-primary);
        padding-left: 1rem;
        margin-left: 0;
        margin-bottom: 0.75rem;
        color: var(--mud-palette-text-secondary);
        font-style: italic;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .markdown-content code[b-ea2t74k42v] {
        background-color: rgba(0, 0, 0, 0.05);
        padding: 0.2rem 0.4rem;
        border-radius: 3px;
        font-family: monospace;
        font-size: 0.9em;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .markdown-content pre[b-ea2t74k42v] {
        background-color: rgba(0, 0, 0, 0.05);
        padding: 1rem;
        border-radius: 5px;
        overflow-x: auto;
        margin-bottom: 0.75rem;
        max-width: 100%;
    }

        .markdown-content pre code[b-ea2t74k42v] {
            background-color: transparent;
            padding: 0;
            word-break: normal;
            white-space: pre-wrap;
            overflow-wrap: normal;
        }

    .markdown-content table[b-ea2t74k42v] {
        max-width: 100%;
        overflow-x: auto;
        display: block;
    }

    .markdown-content img[b-ea2t74k42v] {
        max-width: 100%;
        height: auto;
    }
/* /Components/Pages/ContactMoments/Components/TranscriptionHistorySection.razor.rz.scp.css */
.transcription-container[b-w20j4acn9t] {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transcription-select-card[b-w20j4acn9t] {
    flex: 0 0 auto;
}

.transcription-chat-card[b-w20j4acn9t] {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

    .transcription-chat-card > .mud-card-content[b-w20j4acn9t] {
        flex: 1 1 auto;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        padding: 0 !important;
    }

.transcription-chat-scroll[b-w20j4acn9t] {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1rem;
}
/* /Components/Pages/ContactMoments/ContactMomentDetails.razor.rz.scp.css */
[b-1vk89y18g5] .transcription-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

[b-1vk89y18g5] .transcription-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[b-1vk89y18g5] .transcription-right {
    display: flex;
    align-items: center;
}

[b-1vk89y18g5] .exsentra-icon-small {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

[b-1vk89y18g5] .qn-split {
    display: flex;
    align-items: stretch;
    gap: 24px;
}

[b-1vk89y18g5] .qn-column {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

[b-1vk89y18g5] .qn-content {
    flex: 1 1 auto;
    min-width: 0;
}


[b-1vk89y18g5] .qn-vertical-divider {
    margin-top: 5px;
    border-color: rgba(0, 0, 0, 0.1) !important;
    border-width: 3px !important;
}

@media (max-width: 959px) {
    [b-1vk89y18g5] .qn-split {
        flex-direction: column;
        gap: 16px;
    }

    [b-1vk89y18g5] .qn-vertical-divider {
        display: none;
    }
}


[b-1vk89y18g5] .mud-input-auto-grow > textarea.mud-input-root-outlined {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 6px;
    padding-bottom: 6px;
}
/* /Components/Pages/ContactMoments/LiveContactMoment.razor.rz.scp.css */
.responsive-page-container[b-jeqv8hjfmt] {
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
}

.page-content-wrapper[b-jeqv8hjfmt] {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.responsive-card[b-jeqv8hjfmt] {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}

.responsive-card-content[b-jeqv8hjfmt] {
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
    padding: 1rem;
}

.Exsentra-icon[b-jeqv8hjfmt] {
    width: 32px;
    height: 32px;
}

.section-card .customCard[b-jeqv8hjfmt]{
    margin-bottom: 1rem;
}

.section-card-content .customCard[b-jeqv8hjfmt]{
    padding: 0 !important;
}

.drag-handle[b-jeqv8hjfmt] {
    cursor: grab;
    color: var(--mud-palette-text-secondary);
}

    .drag-handle:active[b-jeqv8hjfmt] {
        cursor: grabbing;
    }

.question-item[b-jeqv8hjfmt] {
    margin-bottom: 1.5rem;
    position: relative;
}

.answer-field[b-jeqv8hjfmt], .note-field[b-jeqv8hjfmt] {
    margin-top: 0.5rem;
}

.suggested-answer-display[b-jeqv8hjfmt] {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background-color: #f5f5f5;
    border-left: 3px solid #2196F3;
    border-radius: 4px;
}

.question-generation-controls[b-jeqv8hjfmt] {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.deleteContainer[b-jeqv8hjfmt] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.AddCustom[b-jeqv8hjfmt] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.custom-tabs-container[b-jeqv8hjfmt] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tabs-toolbar-card[b-jeqv8hjfmt] {
    background-color: var(--mud-palette-surface);
    box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.14), 0px 1px 3px 0px rgba(0,0,0,0.12);
    border-radius: 4px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    flex: 0 0 auto;
}

.tabs-content-area[b-jeqv8hjfmt] {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
}

.custom-tabs-wrapper .mud-tabs-toolbar[b-jeqv8hjfmt] {
    display: none;
}

.custom-tabs-wrapper .mud-tabs-panels[b-jeqv8hjfmt] {
    flex: 1 1 auto;
    min-height: 0;
    overflow: visible;
}

.custom-tabs-wrapper .mud-tabpanel[b-jeqv8hjfmt] {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tab-header-button[b-jeqv8hjfmt] {
    padding: 0.5rem 1.5rem;
    margin: 0 0.25rem;
    border: none;
    background: transparent;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    color: var(--mud-palette-text-primary);
    font-weight: 500;
}

    .tab-header-button:hover[b-jeqv8hjfmt] {
        background-color: rgba(0, 0, 0, 0.04);
    }

    .tab-header-button.active[b-jeqv8hjfmt] {
        border-bottom-color: var(--mud-palette-primary);
        color: var(--mud-palette-primary);
    }

.tab-headers-container[b-jeqv8hjfmt] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
/* /Components/Pages/Home.razor.rz.scp.css */
body[b-l0gfn74exd], html[b-l0gfn74exd] {
    overflow-x: hidden;
}

/* ── Layout ── */
.home-dashboard[b-l0gfn74exd] {
    background: #f0f1f7;
    padding: 24px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

    .home-dashboard .section-title[b-l0gfn74exd] {
        font-size: 13px;
        font-weight: 600;
        color: #374151;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    /* ── Stat cards ── */
    .home-dashboard .stat-card[b-l0gfn74exd] {
        background: #fff;
        border-radius: 20px;
        border: 1.5px solid #e8eaf0;
        box-shadow: 0 4px 20px rgba(0,0,0,.06);
        padding: 24px 24px 18px;
        position: relative;
        overflow: hidden;
        transition: box-shadow .2s ease, transform .2s ease;
    }

        .home-dashboard .stat-card:hover[b-l0gfn74exd] {
            box-shadow: 0 8px 30px rgba(0,0,0,.10);
            transform: translateY(-3px);
        }

        .home-dashboard .stat-card .stat-icon[b-l0gfn74exd] {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 16px;
        }

    .home-dashboard .stat-icon.blue[b-l0gfn74exd] {
        background: #dbeafe;
        color: #2563eb;
    }

    .home-dashboard .stat-icon.teal[b-l0gfn74exd] {
        background: #ccfbf1;
        color: #0d9488;
    }

    .home-dashboard .stat-icon.purple[b-l0gfn74exd] {
        background: #ede9fe;
        color: #7c3aed;
    }

    .home-dashboard .stat-icon.green[b-l0gfn74exd] {
        background: #dcfce7;
        color: #16a34a;
    }

    .home-dashboard .stat-icon.orange[b-l0gfn74exd] {
        background: #fff7ed;
        color: #ea580c;
    }

    .home-dashboard .stat-icon.red[b-l0gfn74exd] {
        background: #fee2e2;
        color: #dc2626;
    }

    .home-dashboard .stat-card .stat-value[b-l0gfn74exd] {
        font-size: 32px;
        font-weight: 800;
        line-height: 1.1;
        color: #0f172a;
        margin-bottom: 4px;
        letter-spacing: -1px;
    }

    .home-dashboard .stat-card .stat-label[b-l0gfn74exd] {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .07em;
        color: #94a3b8;
        margin-bottom: 14px;
    }

    .home-dashboard .stat-card .stat-link[b-l0gfn74exd] {
        font-size: 12px;
        font-weight: 600;
        color: #6366f1;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: gap .15s ease;
    }

        .home-dashboard .stat-card .stat-link:hover[b-l0gfn74exd] {
            gap: 8px;
            color: #4f46e5;
        }

    /* ── Interviews section ── */
    .home-dashboard .interviews-section[b-l0gfn74exd] {
        background: #fff;
        border-radius: 20px;
        padding: 20px;
        border: 1.5px solid #e8eaf0;
        box-shadow: 0 4px 20px rgba(0,0,0,.06);
        width: 100%;
        box-sizing: border-box;
    }

        .home-dashboard .interviews-section .section-title[b-l0gfn74exd] {
            font-size: 14px;
            font-weight: 700;
            color: #374151;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

    .home-dashboard .interviews-inner[b-l0gfn74exd] {
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid #e2e5ec;
        width: 100%;
    }

    /* ── Table ── */
    .home-dashboard .dashboard-table[b-l0gfn74exd] {
        width: 100%;
    }

        .home-dashboard .dashboard-table thead th[b-l0gfn74exd] {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: #9ca3af;
            border-bottom: 1px solid #e2e5ec;
            padding: 12px 14px;
            background: #edf0f5;
        }

        .home-dashboard .dashboard-table tbody tr[b-l0gfn74exd] {
            transition: background .15s ease;
        }

            .home-dashboard .dashboard-table tbody tr:hover[b-l0gfn74exd] {
                background: #edf0f5;
            }

        .home-dashboard .dashboard-table tbody td[b-l0gfn74exd] {
            vertical-align: middle;
            border-bottom: 1px solid #e8eaf0;
            font-size: 13px;
            color: #374151;
            padding: 11px 14px;
            background: #fff;
        }

        .home-dashboard .dashboard-table tbody tr:last-child td[b-l0gfn74exd] {
            border-bottom: none;
        }

        .home-dashboard .dashboard-table tbody tr:hover td[b-l0gfn74exd] {
            background: #f0f1f7;
        }

    /* ── Avatar ── */
    .home-dashboard .avatar-initials[b-l0gfn74exd] {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        flex-shrink: 0;
    }

    /* ── Badges ── */
    .home-dashboard .status-badge[b-l0gfn74exd] {
        display: inline-flex;
        align-items: center;
        padding: 3px 10px;
        border-radius: 99px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .03em;
    }

/* ── Toggle switch ── */
.interview-toggle[b-l0gfn74exd] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    user-select: none;
}

    .interview-toggle input[type="checkbox"][b-l0gfn74exd] {
        display: none;
    }

.toggle-track[b-l0gfn74exd] {
    width: 36px;
    height: 20px;
    background: #e2e5ec;
    border-radius: 99px;
    position: relative;
    transition: background .2s ease;
    flex-shrink: 0;
}

    .toggle-track[b-l0gfn74exd]::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 3px;
        width: 14px;
        height: 14px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 1px 3px rgba(0,0,0,.2);
        transition: transform .2s ease;
    }

.interview-toggle input:checked + .toggle-track[b-l0gfn74exd] {
    background: #6366f1;
}

    .interview-toggle input:checked + .toggle-track[b-l0gfn74exd]::after {
        transform: translateX(16px);
    }


.stat-icon.purple[b-l0gfn74exd] {
    background-color: #ede9fe;
    color: #7c3aed;
}

.home-dashboard .stat-icon.orange[b-l0gfn74exd] {
    background: #fff7ed;
    color: #ea580c;
}
/* /Components/Pages/People/AddPerson.razor.rz.scp.css */
.file-upload-input[b-d7cuzsgr74] {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 40000;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.ai-parser-header[b-d7cuzsgr74] {
    background-color: var(--mud-palette-dark);
    border-radius: 4px 4px 0 0;
    padding: 1rem 1.5rem;
}

    .ai-parser-header[b-d7cuzsgr74]  .mud-typography {
        color: white;
    }

    .ai-parser-header[b-d7cuzsgr74]  .mud-typography-caption {
        color: rgba(255, 255, 255, 0.6) !important;
    }

.ai-parser-header-title[b-d7cuzsgr74] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ai-parser-header[b-d7cuzsgr74]  .header-link-icon {
    color: white;
}

.responsive-card .responsive-card-content:has(iframe)[b-d7cuzsgr74] {
    overflow-y: hidden;
}

.save-toolbar[b-d7cuzsgr74] {
    border-top: 1px solid var(--mud-palette-divider);
    padding: 0.75rem 1.5rem;
    background-color: var(--mud-palette-surface);
}

[b-d7cuzsgr74] .tab-style-5 .mud-tab .mud-icon-root,
[b-d7cuzsgr74] .tab-style-1 .mud-tab .mud-icon-root {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

[b-d7cuzsgr74] .tab-style-5 .mud-tab,
[b-d7cuzsgr74] .tab-style-1 .mud-tab {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

[b-d7cuzsgr74] .detail-pill-input .mud-input-root {
    padding: 0 !important;
    min-height: unset !important;
}

[b-d7cuzsgr74] .detail-pill-input .mud-input {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 0 !important;
}

[b-d7cuzsgr74] .detail-pill-input .mud-input-underline::before,
[b-d7cuzsgr74] .detail-pill-input .mud-input-underline::after {
    display: none !important;
}

[b-d7cuzsgr74] .detail-pill-input .mud-select-input {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 0 !important;
}
/* /Components/Pages/People/Components/CvTab.razor.rz.scp.css */
.cv-tab-scroll[b-8krfzib58u] {
    overflow-y: auto !important;
    max-height: calc(100vh - 380px) !important;
    scrollbar-width: thin;
    scrollbar-color: var(--mud-palette-primary) var(--mud-palette-background-grey);
}

    .cv-tab-scroll[b-8krfzib58u]::-webkit-scrollbar {
        width: 6px;
    }

    .cv-tab-scroll[b-8krfzib58u]::-webkit-scrollbar-track {
        background: var(--mud-palette-background-grey);
        border-radius: 3px;
    }

    .cv-tab-scroll[b-8krfzib58u]::-webkit-scrollbar-thumb {
        background-color: var(--mud-palette-primary);
        border-radius: 3px;
    }

[b-8krfzib58u] .selected-row {
    background-color: rgba(var(--mud-palette-primary-rgb), 0.1) !important;
    cursor: pointer !important;
}

[b-8krfzib58u] .clickable-row {
    cursor: pointer !important;
}
/* /Components/Pages/People/Dialogs/CvExtractionReviewDialog.razor.rz.scp.css */
.ai-parser-header[b-y6fgxi5n6e] {
    background-color: var(--mud-palette-dark) !important;
    border-radius: 4px 4px 0 0 !important;
    padding: 1rem 1.5rem !important;
}

    .ai-parser-header[b-y6fgxi5n6e]  .mud-typography {
        color: white !important;
    }

.ai-parser-header-title[b-y6fgxi5n6e] {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

/* MudDialog internals */
[b-y6fgxi5n6e] .mud-dialog-content {
    overflow: hidden !important;
    padding-bottom: 0 !important;
}

/* MudGrid internals */
[b-y6fgxi5n6e] .mud-grid {
    flex-wrap: nowrap !important;
}

.cv-pdf-scroll[b-y6fgxi5n6e] {
    overflow-y: scroll !important;
    height: 60vh !important;
    scrollbar-width: thin;
    scrollbar-color: var(--mud-palette-primary) var(--mud-palette-background-grey);
}

    .cv-pdf-scroll[b-y6fgxi5n6e]::-webkit-scrollbar {
        width: 6px;
    }

    .cv-pdf-scroll[b-y6fgxi5n6e]::-webkit-scrollbar-track {
        background: var(--mud-palette-background-grey);
        border-radius: 3px;
    }

    .cv-pdf-scroll[b-y6fgxi5n6e]::-webkit-scrollbar-thumb {
        background-color: var(--mud-palette-primary);
        border-radius: 3px;
    }
/* /Components/Pages/People/PersonDetails.razor.rz.scp.css */
.responsive-card[b-0rqsnu7uep] {
    flex: 1 1 0 !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-height: 95% !important;
    overflow: hidden !important;
}

.responsive-card-content[b-0rqsnu7uep] {
    flex: 1 1 auto !important;
    overflow-y: auto !important;
    min-height: 0 !important;
    padding: 1rem !important;
}

.no-scroll-content[b-0rqsnu7uep] {
    overflow-y: visible !important;
}

.cv-preview-header[b-0rqsnu7uep] {
    background-color: var(--mud-palette-dark) !important;
    border-radius: 4px 4px 0 0 !important;
    padding: 1rem 1.5rem !important;
}

    .cv-preview-header[b-0rqsnu7uep]  .mud-typography {
        color: white !important;
    }

    .cv-preview-header[b-0rqsnu7uep]  .mud-typography-caption {
        color: rgba(255, 255, 255, 0.6) !important;
    }

    .cv-preview-header[b-0rqsnu7uep]  .header-link-icon,
    .cv-preview-header[b-0rqsnu7uep]  .header-link-icon .mud-icon-root,
    .cv-preview-header[b-0rqsnu7uep]  .mud-icon-button .mud-icon-root {
        color: white !important;
    }

.cv-preview-header-title[b-0rqsnu7uep] {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.cv-preview-content[b-0rqsnu7uep] {
    flex: 1 1 auto !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

/* Tab styling */
.person-detail-tabs[b-0rqsnu7uep]  .mud-tab {
    min-width: unset !important;
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

    .person-detail-tabs[b-0rqsnu7uep]  .mud-tab .mud-icon-root {
        font-size: 0.9rem !important;
    }

.mud-tabs .mud-tooltip-root[b-0rqsnu7uep] {
    margin-inline-end: 0;
}
/* /Components/Shared/LoadingModal.razor.rz.scp.css */
.modal-backdrop[b-xrnd08ex43] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content[b-xrnd08ex43] {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.spinner[b-xrnd08ex43] {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin-b-xrnd08ex43 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-xrnd08ex43 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
