/* businessValuation.css — Editorial Design System (Polished) */

/* ═══════════════════════════════════════════════════════════
   EDITORIAL HERO HEADER
   ═══════════════════════════════════════════════════════════ */
.bv-hero-header {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #283548 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--liq-shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.bv-hero-header::before {
    content: '';
    position: absolute;
    top: -40%; right: -5%; width: 40%; height: 180%;
    background: radial-gradient(ellipse at 80% 20%, rgba(74, 144, 128, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.bv-hero-header h3 {
    margin: 0 0 0.2rem 0;
    font-family: var(--liq-font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.02em;
    position: relative; z-index: 1;
    display: flex; align-items: center; gap: 0.45rem;
}
.bv-hero-header h3 svg { color: rgba(255,255,255,0.8); }
.bv-hero-header p {
    margin: 0;
    opacity: 0.6;
    font-family: var(--liq-font-body);
    font-size: 0.875rem;
    position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   MAIN CONTAINER
   ═══════════════════════════════════════════════════════════ */
.business-valuation-wrapper {
    background: var(--liq-bg);
    border: 1px solid var(--liq-border-light);
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.business-valuation-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--liq-accent), #c4576a);
    border-radius: 12px 12px 0 0;
}

.business-valuation-wrapper .content-section-title {
    color: var(--liq-text);
    font-family: var(--liq-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 4px 0 18px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-valuation-wrapper .content-section-title svg {
    color: var(--liq-accent);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   TABS
   ═══════════════════════════════════════════════════════════ */
.bv-tabs-header {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--liq-border-light);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.bv-tab-btn {
    padding: 10px 18px;
    font-family: var(--liq-font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--liq-text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.bv-tab-btn:hover {
    color: var(--liq-accent);
    background: rgba(74, 144, 128, 0.04);
}

.bv-tab-btn.active {
    color: var(--liq-text);
    border-bottom-color: var(--liq-accent);
    font-weight: 600;
    background: rgba(74, 144, 128, 0.06);
    border-radius: 6px 6px 0 0;
}

.bv-tab-panel { display: none; }
.bv-tab-panel.active { display: block; animation: bvFadeIn 0.25s ease; }

@keyframes bvFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   HEADLINE VALUATION CARD
   ═══════════════════════════════════════════════════════════ */
.bv-headline-card {
    background: linear-gradient(135deg, var(--liq-text) 0%, #2a2f35 100%);
    color: var(--liq-surface);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.bv-headline-label {
    font-family: var(--liq-font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
    font-weight: 500;
}

.bv-headline-range {
    font-family: var(--liq-font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    color: #6dd4b8;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.bv-headline-median {
    font-family: var(--liq-font-mono);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}

.bv-headline-confidence {
    font-family: var(--liq-font-body);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    margin-top: 10px;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════
   STATS ROW (Key Metrics)
   ═══════════════════════════════════════════════════════════ */
.bv-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.bv-stat-card {
    background: var(--liq-surface);
    border: 1px solid var(--liq-border-light);
    border-radius: 10px;
    padding: 14px 16px;
    text-align: center;
    transition: box-shadow 0.2s ease;
}

.bv-stat-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.bv-stat-label {
    font-family: var(--liq-font-body);
    font-size: 0.7rem;
    color: var(--liq-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    line-height: 1.3;
    font-weight: 500;
}

.bv-stat-value {
    font-family: var(--liq-font-mono);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--liq-text);
}

.bv-stat-sub {
    font-family: var(--liq-font-body);
    font-size: 0.7rem;
    color: var(--liq-text-muted);
    margin-top: 4px;
    line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════
   METHOD CARDS GRID
   ═══════════════════════════════════════════════════════════ */
.bv-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.bv-method-card {
    background: var(--liq-surface);
    border: 1px solid var(--liq-border-light);
    border-radius: 10px;
    padding: 16px 18px;
    position: relative;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.bv-method-card:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
    transform: translateY(-1px);
}

.bv-method-card.primary { border-left: 4px solid var(--liq-accent); }
.bv-method-card.secondary { border-left: 4px solid #c4576a; }
.bv-method-card.tertiary { border-left: 4px solid var(--liq-accent); }

.bv-method-name {
    font-family: var(--liq-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--liq-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.bv-method-value {
    font-family: var(--liq-font-mono);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--liq-text);
    margin-bottom: 4px;
}

.bv-method-range {
    font-family: var(--liq-font-mono);
    font-size: 0.72rem;
    color: var(--liq-text-muted);
}

.bv-method-weight {
    font-family: var(--liq-font-body);
    font-size: 0.7rem;
    color: var(--liq-text-muted);
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px solid var(--liq-border-lighter);
}

.bv-method-na {
    font-family: var(--liq-font-body);
    font-size: 0.82rem;
    color: #bbb;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   DCF TABLE
   ═══════════════════════════════════════════════════════════ */
.bv-dcf-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--liq-font-body);
    font-size: 0.82rem;
    margin-bottom: 20px;
    background: var(--liq-surface);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--liq-border-light);
}

.bv-dcf-table th {
    background: #f7f5f2;
    color: var(--liq-text-muted);
    font-weight: 600;
    padding: 10px 14px;
    text-align: right;
    border-bottom: 2px solid var(--liq-border-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bv-dcf-table th:first-child { text-align: left; }

.bv-dcf-table td {
    padding: 10px 14px;
    text-align: right;
    border-bottom: 1px solid var(--liq-border-lighter);
    color: #333;
    font-family: var(--liq-font-mono);
    font-size: 0.82rem;
}

.bv-dcf-table td:first-child {
    text-align: left;
    font-family: var(--liq-font-body);
    font-weight: 500;
    color: var(--liq-text);
}

.bv-dcf-table tbody tr:hover {
    background: rgba(74, 144, 128, 0.03);
}

.bv-dcf-table tr.bv-dcf-total td {
    font-weight: 700;
    border-top: 2px solid var(--liq-accent);
    color: var(--liq-accent);
    background: rgba(74, 144, 128, 0.04);
    font-size: 0.88rem;
}

/* ═══════════════════════════════════════════════════════════
   CHART CONTAINERS
   ═══════════════════════════════════════════════════════════ */
.bv-chart-container {
    background: var(--liq-surface);
    border: 1px solid var(--liq-border-light);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 18px;
    position: relative;
}

.bv-chart-container .liq-apex-host,
.bv-chart-container canvas {
    max-height: 280px;
    width: 100%;
}

.bv-apex-tooltip {
    background: #1C1917;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 12px;
    min-width: 210px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.bv-apex-tooltip-title {
    color: #FAFAF9;
    font: 600 12px var(--liq-font-body);
    padding-bottom: 6px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bv-apex-tooltip-row {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    margin: 4px 0;
}

.bv-apex-tooltip-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
}

.bv-apex-tooltip-label {
    color: #D6D3D1;
    font: 500 11px var(--liq-font-body);
}

.bv-apex-tooltip-value {
    color: #FAFAF9;
    font: 600 11px var(--liq-font-mono);
}

.bv-apex-tooltip-footer {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #A8A29E;
    font: 500 10px var(--liq-font-body);
}

.bv-chart-title {
    font-family: var(--liq-font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--liq-text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ═══════════════════════════════════════════════════════════
   SENSITIVITY HEATMAP
   ═══════════════════════════════════════════════════════════ */
.bv-heatmap {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--liq-font-mono);
    font-size: 0.75rem;
    margin-bottom: 18px;
    background: var(--liq-surface);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--liq-border-light);
}

.bv-heatmap th {
    padding: 8px 10px;
    font-weight: 600;
    color: #333;
    background: #f7f5f2;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.bv-heatmap td {
    padding: 8px 10px;
    text-align: center;
    border: 1px solid var(--liq-border-lighter);
    font-weight: 500;
    transition: transform 0.1s ease;
}

/* Row header cells (first column with growth rates) */
.bv-heatmap td:first-child {
    background: #f7f5f2;
    color: var(--liq-text);
    font-weight: 700;
    text-align: center;
}

.bv-heatmap tbody tr:hover td { transform: scale(1.02); }

.bv-heat-high { background: rgba(74, 144, 128, 0.18); color: #1a5c4e; font-weight: 600; }
.bv-heat-mid  { background: rgba(245, 158, 11, 0.12); color: #78350f; }
.bv-heat-low  { background: rgba(196, 87, 106, 0.14); color: #7f1d2e; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   TORNADO SENSITIVITY
   ═══════════════════════════════════════════════════════════ */
.bv-tornado-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding: 4px 0;
}

.bv-tornado-label {
    font-family: var(--liq-font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--liq-text-muted);
    width: 150px;
    text-align: right;
    flex-shrink: 0;
    line-height: 1.3;
}

.bv-tornado-bar-container {
    flex: 1;
    height: 26px;
    background: var(--liq-border-lighter);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.bv-tornado-bar-neg {
    position: absolute;
    right: 50%;
    height: 100%;
    background: linear-gradient(90deg, #c4576a, #d4778d);
    opacity: 0.7;
    border-radius: 5px 0 0 5px;
    transition: width 0.3s ease;
}

.bv-tornado-bar-pos {
    position: absolute;
    left: 50%;
    height: 100%;
    background: linear-gradient(90deg, #5bb99a, var(--liq-accent));
    opacity: 0.7;
    border-radius: 0 5px 5px 0;
    transition: width 0.3s ease;
}

.bv-tornado-center {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: #bbb;
}

.bv-tornado-values {
    font-family: var(--liq-font-mono);
    font-size: 0.7rem;
    color: var(--liq-text-muted);
    width: 140px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   VALUE GAP TABLE
   ═══════════════════════════════════════════════════════════ */
.bv-gap-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--liq-font-body);
    font-size: 0.82rem;
    margin-bottom: 18px;
    background: var(--liq-surface);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--liq-border-light);
}

.bv-gap-table th {
    background: #f7f5f2;
    padding: 10px 14px;
    font-weight: 600;
    color: var(--liq-text-muted);
    text-align: left;
    border-bottom: 2px solid var(--liq-border-light);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bv-gap-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--liq-border-lighter);
    color: #333;
}

.bv-gap-table tbody tr:hover {
    background: rgba(74, 144, 128, 0.03);
}

.bv-gap-impact {
    font-family: var(--liq-font-mono);
    font-weight: 700;
    color: var(--liq-accent);
    font-size: 0.88rem;
}

/* ═══════════════════════════════════════════════════════════
   EXIT READINESS
   ═══════════════════════════════════════════════════════════ */
.bv-exit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.bv-exit-dim {
    background: var(--liq-surface);
    border: 1px solid var(--liq-border-light);
    border-radius: 10px;
    padding: 14px 16px;
    transition: box-shadow 0.2s ease;
}

.bv-exit-dim:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.bv-exit-dim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.bv-exit-dim-name {
    font-family: var(--liq-font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--liq-text);
}

.bv-exit-dim-score {
    font-family: var(--liq-font-mono);
    font-size: 0.85rem;
    font-weight: 700;
}

.bv-exit-progress {
    height: 6px;
    background: var(--liq-border-lighter);
    border-radius: 3px;
    overflow: hidden;
}

.bv-exit-progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Score tiers — white card with coloured left border accent + score badge */
.bv-score-excellent { border-left: 4px solid var(--liq-profit); }
.bv-score-excellent .bv-exit-dim-score { color: var(--liq-surface); background: var(--liq-profit); padding: 2px 8px; border-radius: 10px; font-size: 0.72rem; }
.bv-score-excellent .bv-exit-progress-fill { background: linear-gradient(90deg, var(--liq-profit), #34d399); }
.bv-score-good { border-left: 4px solid var(--liq-accent); }
.bv-score-good .bv-exit-dim-score { color: var(--liq-surface); background: var(--liq-accent); padding: 2px 8px; border-radius: 10px; font-size: 0.72rem; }
.bv-score-good .bv-exit-progress-fill { background: linear-gradient(90deg, var(--liq-accent), #6dd4b8); }
.bv-score-fair { border-left: 4px solid var(--liq-warning); }
.bv-score-fair .bv-exit-dim-score { color: var(--liq-surface); background: var(--liq-warning); padding: 2px 8px; border-radius: 10px; font-size: 0.72rem; }
.bv-score-fair .bv-exit-progress-fill { background: linear-gradient(90deg, var(--liq-warning), #fbbf24); }
.bv-score-poor { border-left: 4px solid #c4576a; }
.bv-score-poor .bv-exit-dim-score { color: var(--liq-surface); background: #c4576a; padding: 2px 8px; border-radius: 10px; font-size: 0.72rem; }
.bv-score-poor .bv-exit-progress-fill { background: linear-gradient(90deg, #c4576a, #e8889a); }

/* ═══════════════════════════════════════════════════════════
   COMPOSITE SCORE CARD
   ═══════════════════════════════════════════════════════════ */
.bv-composite-card {
    background: var(--liq-surface);
    border: 1px solid var(--liq-border-light);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.bv-composite-score {
    font-family: var(--liq-font-mono);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.bv-composite-label {
    font-family: var(--liq-font-body);
    font-size: 0.78rem;
    color: var(--liq-text-muted);
    margin-top: 8px;
    letter-spacing: 0.02em;
}

.bv-grade-badge {
    display: inline-block;
    padding: 5px 18px;
    border-radius: 20px;
    font-family: var(--liq-font-body);
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 12px;
    letter-spacing: 0.03em;
}

.bv-grade-A { background: #d1fae5; color: #065f46; }
.bv-grade-B { background: #d1f5ea; color: #1a5c4e; }
.bv-grade-C { background: #fef3c7; color: #92400e; }
.bv-grade-D { background: #fee2e2; color: #991b1b; }
.bv-grade-F { background: #fecaca; color: #7f1d1d; }

/* ═══════════════════════════════════════════════════════════
   PLACEHOLDER
   ═══════════════════════════════════════════════════════════ */
.bv-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: var(--liq-surface);
    border-radius: 10px;
    border: 2px dashed var(--liq-border);
    text-align: center;
    padding: 1.5rem;
}

.bv-placeholder p {
    color: var(--liq-text-muted);
    font-family: var(--liq-font-body);
    line-height: 1.7;
    font-size: 0.85rem;
    max-width: 400px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION TITLES
   ═══════════════════════════════════════════════════════════ */
.bv-section-title {
    font-family: var(--liq-font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--liq-text);
    margin: 22px 0 14px 0;
    padding: 8px 12px;
    background: var(--liq-surface);
    border: 1px solid var(--liq-border-light);
    border-radius: 6px;
    border-left: 3px solid var(--liq-accent);
}

/* ═══════════════════════════════════════════════════════════
   TWO-COLUMN LAYOUT
   ═══════════════════════════════════════════════════════════ */
.bv-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .bv-methods-grid { grid-template-columns: repeat(2, 1fr); }
    .bv-tornado-label { width: 110px; font-size: 0.7rem; }
    .bv-tornado-values { width: 110px; }
}

@media (max-width: 768px) {
    .business-valuation-wrapper { padding: 14px; }
    .bv-two-col { grid-template-columns: 1fr; }
    .bv-methods-grid { grid-template-columns: 1fr 1fr; }
    .bv-exit-grid { grid-template-columns: 1fr; }
    .bv-headline-range { font-size: 1.3rem; }
    .bv-headline-card { padding: 24px 16px; }
    .bv-stats-row { grid-template-columns: repeat(2, 1fr); }
    .bv-tab-btn { padding: 8px 12px; font-size: 0.75rem; }
}

@media (max-width: 480px) {
    .bv-methods-grid { grid-template-columns: 1fr; }
    .bv-stats-row { grid-template-columns: 1fr 1fr; }
    .bv-tornado-row { flex-direction: column; align-items: stretch; gap: 4px; }
    .bv-tornado-label { text-align: left; width: auto; }
    .bv-tornado-values { width: auto; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   ENRICHMENT FORM
   ═══════════════════════════════════════════════════════════ */
.bv-enrichment-section {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--liq-border-lighter);
}

.bv-enrichment-section:last-child { border-bottom: none; }

.bv-enrichment-section h4 {
    font-family: var(--liq-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--liq-text);
    margin: 0 0 6px 0;
}

.bv-enrichment-section label {
    font-family: var(--liq-font-body);
    font-size: 0.78rem;
    color: var(--liq-text-muted);
    line-height: 1.4;
}

.bv-enrichment-section select,
.bv-enrichment-section input[type="number"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--liq-border);
    border-radius: 8px;
    font-family: var(--liq-font-body);
    font-size: 0.85rem;
    margin-top: 6px;
    transition: border-color 0.2s ease;
    background: var(--liq-surface);
}

.bv-enrichment-section select:focus,
.bv-enrichment-section input[type="number"]:focus {
    outline: none;
    border-color: var(--liq-accent);
    box-shadow: 0 0 0 3px rgba(74, 144, 128, 0.1);
}

.bv-addback-list {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid var(--liq-border-light);
    border-radius: 8px;
    padding: 8px;
    margin-top: 6px;
    background: var(--liq-surface);
}

.bv-addback-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 6px;
    font-family: var(--liq-font-body);
    font-size: 0.78rem;
    color: #333;
    cursor: pointer;
    transition: background 0.15s ease;
}

.bv-addback-item:hover { background: var(--liq-border-lighter); }

.bv-addback-item input[type="checkbox"] {
    flex-shrink: 0;
    accent-color: var(--liq-accent);
}

.bv-addback-amount {
    font-family: var(--liq-font-mono);
    font-size: 0.72rem;
    color: var(--liq-text-muted);
    margin-left: auto;
}

.bv-confidence-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bv-confidence-high { background: var(--liq-profit); }
.bv-confidence-medium { background: var(--liq-warning); }
.bv-confidence-low { background: #c4576a; }
