/* KPI Dashboard — Modals: Drilldown, History, Onboarding, Weekly Report, Customize */

/* ================================================================
   MODALS
   ================================================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay.show {
    display: flex;
}

/* Glassmorphic Cortex modal panel */
.modal-content {
    background: rgba(13, 17, 26, 0.65);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(0, 229, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 90%;
    max-width: 680px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--red);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-export {
    background: linear-gradient(135deg, var(--teal), var(--teal-dim));
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-export:hover {
    filter: brightness(1.15);
}

/* Letter Modal Content */
.letter-body {
    padding: 24px;
}

.letter-content {
    background: #f8fafc;
    color: #1e293b;
    border-radius: 10px;
    padding: 32px;
    font-size: 14px;
    line-height: 1.7;
}

.letter-content p {
    margin-bottom: 14px;
}

.letter-content ul {
    margin: 10px 0 14px 20px;
}

.letter-content li {
    margin-bottom: 6px;
}

.letter-date {
    font-size: 13px;
    color: #64748b;
}

.letter-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    font-size: 13px;
}

/* Report Modal Content */
.report-body {
    padding: 24px;
}

.report-content {
    color: var(--text);
}

.report-header-block {
    text-align: center;
    margin-bottom: 24px;
}

.report-header-block h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 4px;
}

.report-period {
    font-size: 13px;
    color: var(--text-muted);
}

.report-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.report-metric {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 8px;
}

.report-metric-value {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.report-metric-label {
    font-size: 13px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 4px;
    font-weight: 600;
}

.report-section {
    margin-bottom: 20px;
}

.report-section h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.report-section ul {
    list-style: disc;
    margin-left: 20px;
}

.report-section li {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 4px;
}

.report-section p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 6px;
}

/* Code in tables */
.data-table td code {
    font-size: 13px;
    background: rgba(148, 163, 184, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--teal);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1280px) {
    .kpi-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .kpi-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .pl-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kpi-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pl-detail-grid {
        grid-template-columns: 1fr;
    }

    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nodes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .billing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pulse-stats-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .pulse-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-section {
        padding: 0 16px;
    }

    .top-header {
        padding: 0 16px;
    }

    .kpi-grid {
        grid-template-columns: 1fr;
    }

    .kpi-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .actions-grid {
        grid-template-columns: 1fr;
    }

    .nodes-grid {
        grid-template-columns: 1fr;
    }

    .billing-grid {
        grid-template-columns: 1fr;
    }

    .metric-card.span-2 {
        grid-column: span 1;
    }

    .pulse-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .pulse-detail-grid {
        grid-template-columns: 1fr;
    }

    .header-right .date-range-group {
        display: none;
    }

    .report-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-right .btn-export span {
        display: none;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-dim);
}

/* ================================================================
   PHASE 2: DRILLDOWN MODAL
   ================================================================ */
.drilldown-modal {
    max-width: 700px;
}

.drilldown-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.drilldown-table th {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drilldown-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.06);
    color: var(--text);
}

.drilldown-table tbody tr:hover {
    background: rgba(148, 163, 184, 0.04);
}

.drilldown-footer {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(20, 184, 166, 0.08);
    border-radius: 8px;
    font-size: 13px;
    color: var(--teal);
    font-weight: 500;
}

.sortable-th {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: color 0.15s;
}

.sortable-th:hover {
    color: var(--teal);
}

.export-dropdown {
    width: 220px;
}

.metric-card {
    cursor: pointer;
    transition: border-color 0.2s;
}

.metric-card:hover {
    border-color: var(--teal);
}

/* Exception action buttons */
.btn-exc-action {
    background: transparent;
    border: 1px solid var(--teal);
    color: var(--teal);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    margin-left: auto;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-exc-action:hover {
    background: var(--teal);
    color: #fff;
}

.exception-item {
    display: flex;
    align-items: center;
}

.exception-item.resolved {
    opacity: 0.4;
    text-decoration: line-through;
}

.exception-item.resolved .btn-exc-action {
    border-color: #10b981;
    color: #10b981;
    pointer-events: none;
}

/* Launchable node cards */
.node-card {
    cursor: pointer;
    position: relative;
}

.node-card .node-launch {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 13px;
    color: var(--teal);
    opacity: 0;
    transition: opacity 0.2s;
}

.node-card:hover .node-launch {
    opacity: 1;
}

/* Pulse card accent */
.pulse-card {
    border-left-color: #f97316;
}

/* ================================================================
   CONTENT INTELLIGENCE â€” SCRAPER SECTION 
   ================================================================ */
.scraper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.scraper-card {
    background: rgba(20, 24, 40, 0.4);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 22px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.05), 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.scraper-card:hover {
    transform: translateY(-4px);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(28, 34, 55, 0.5);
    box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.1), 0 12px 40px 0 rgba(0, 0, 0, 0.6);
}

.scraper-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.scraper-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.scraper-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.scraper-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
}

.scraper-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.scraper-status-dot.active {
    background: #10b981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

.scraper-status-dot.error {
    background: #ef4444;
}

.scraper-last-run,
.scraper-sources {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Scraper Activity Feed */
.scraper-activity {
    background: rgba(20, 24, 40, 0.4);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.05), 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
}

.activity-time {
    min-width: 70px;
    color: #cbd5e1;
    font-weight: 700;
    font-size: 13px;
    padding-top: 2px;
}

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.activity-dot.teal {
    background: var(--teal);
}

.activity-dot.amber {
    background: #f59e0b;
}

.activity-text {
    color: #cbd5e1;
    line-height: 1.5;
}

/* Clickable collection metrics */
.collection-metric {
    cursor: pointer;
    transition: all 0.2s;
}

.collection-metric:hover {
    border-color: var(--teal);
}

@media (max-width: 768px) {
    .scraper-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ================================================================
   PHASE 2: ACCOUNT HISTORY TIMELINE
   ================================================================ */
.history-modal {
    max-width: 600px;
}

.history-timeline {
    padding: 8px 0;
}

.timeline-event {
    display: flex;
    gap: 16px;
    position: relative;
    padding-bottom: 24px;
}

.timeline-event.timeline-last {
    padding-bottom: 0;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
    z-index: 1;
}

.timeline-line {
    position: absolute;
    left: 5px;
    top: 18px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-last .timeline-line {
    display: none;
}

.timeline-content {
    flex: 1;
}

.timeline-date {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: 'JetBrains Mono', monospace;
}

.timeline-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.timeline-amount {
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    margin-top: 4px;
}


/* ================================================================
   PHASE 2: ONBOARDING WIZARD
   ================================================================ */
.onboarding-modal {
    max-width: 650px;
}

.onb-steps {
    display: flex;
    gap: 4px;
    padding: 0 24px 24px;
}

.onb-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.onb-step.active,
.onb-step.completed {
    opacity: 1;
}

.onb-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
}

.onb-step.active .onb-step-num {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 0 16px rgba(20, 184, 166, 0.4);
}

.onb-step.completed .onb-step-num {
    background: #22c55e;
    color: #fff;
}

.onb-step-label {
    font-size: 13px;
    color: var(--text-dim);
    text-align: center;
    line-height: 1.3;
}

.onb-content {
    padding: 0 24px 24px;
    text-align: center;
}

.onb-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.onb-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.onb-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.onb-checklist {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.onb-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(148, 163, 184, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    color: var(--text-secondary);
}

.onb-check-item:hover {
    border-color: var(--teal);
    background: rgba(20, 184, 166, 0.05);
}

.onb-check-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--teal);
    cursor: pointer;
}

.onb-hint {
    font-size: 13px;
    color: var(--text-dim);
    background: rgba(59, 130, 246, 0.08);
    padding: 10px 14px;
    border-radius: 8px;
    text-align: left;
}

/* ================================================================
   PHASE 2: LETTER LETTERHEAD
   ================================================================ */
.letter-letterhead {
    border-bottom: 2px solid var(--teal);
    padding-bottom: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================================================
   PHASE 2: REPORT METRIC DELTA
   ================================================================ */
.report-metric-delta {
    font-size: 13px;
    margin-top: 4px;
    font-weight: 500;
}

/* ================================================================
   NOTIFICATION DROPDOWN
/* notif-dropdown: Defined in kpi-base.css with solid background.
   Do NOT redeclare here — it causes the transparent overlay bug. */

.notif-dropdown.show {
    display: block;
}

@keyframes notifSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notif-header {
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notif-count {
    font-size: 13px;
    font-weight: 500;
    color: var(--teal);
}

.notif-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.06);
    cursor: pointer;
    transition: background 0.15s;
}

.notif-item:hover {
    background: rgba(148, 163, 184, 0.06);
}

.notif-icon {
    flex-shrink: 0;
    font-size: 16px;
    margin-top: 2px;
}

.notif-item strong {
    font-size: 13px;
    color: var(--text-primary);
}

.notif-meta {
    font-size: 13px;
    color: var(--text-dim);
}

.notif-footer {
    padding: 12px 16px;
    text-align: center;
    font-size: 13px;
    color: var(--teal);
    cursor: pointer;
    font-weight: 500;
    transition: background 0.15s;
}

.notif-footer:hover {
    background: rgba(20, 184, 166, 0.06);
}

.notif-clear-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: auto;
}

.notif-clear-btn:hover {
    color: #f87171;
    border-color: #f87171;
}

.notif-item {
    position: relative;
}

.notif-dismiss {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 13px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
    padding: 2px 6px;
    border-radius: 4px;
}

.notif-item:hover .notif-dismiss {
    opacity: 1;
}

.notif-dismiss:hover {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

.notif-item.dismissing {
    opacity: 0;
    transform: translateX(20px);
    max-height: 0;
    padding: 0 16px;
    margin: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.notif-empty {
    padding: 24px 16px;
    text-align: center;
    font-size: 13px;
    color: var(--text-dim);
}

.notif-header {
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 8px;
    align-items: center;
}

/* ================================================================
   MODERN ANIMATIONS & INTERACTIVE EFFECTS

/* ================================================================
   DASHBOARD CUSTOMIZATION BUTTON & MODAL
   ================================================================ */
.btn-customize {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-customize:hover {
    border-color: rgba(0, 229, 255, 0.3);
    color: var(--cyan);
    background: rgba(0, 229, 255, 0.06);
}

.customize-modal {
    max-width: 520px;
}

.customize-hint {
    padding: 0 24px 16px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.customize-list {
    max-height: 440px;
    overflow-y: auto;
    padding: 0 24px;
}

.customize-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    cursor: grab;
    transition: all 0.2s ease;
    -webkit-user-select: none;
    user-select: none;
}

.customize-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.customize-item.dragging {
    opacity: 0.5;
    border-color: var(--cyan);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.customize-item.drag-over {
    border-color: rgba(0, 229, 255, 0.4);
    background: rgba(0, 229, 255, 0.06);
}

.drag-handle {
    color: var(--text-dim);
    font-size: 16px;
    cursor: grab;
    flex-shrink: 0;
    line-height: 1;
}

.customize-item-label {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.customize-toggle {
    position: relative;
    width: 42px;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.customize-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.customize-toggle.on {
    background: rgba(20, 184, 166, 0.3);
}

.customize-toggle.on::after {
    left: 21px;
    background: var(--teal);
    box-shadow: 0 0 6px rgba(20, 184, 166, 0.5);
}

/* ================================================================
   LAPSED ADVERTISER SUMMARY STRIP
   ================================================================ */
.lapsed-summary-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(13, 17, 26, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 28px;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}

.lapsed-summary-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--amber), var(--red), var(--amber));
    opacity: 0.6;
}

.lapsed-summary-item {
    flex: 1;
    text-align: center;
    padding: 4px 12px;
}

.lapsed-sum-value {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
    margin-bottom: 4px;
}

.lapsed-sum-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);