
/* ═══════════════════════════════════════════════════════════════════════
   CEO Board Styles v3 — Full Feature Parity
   Multi-select filters · Pagination · Export · Split KPIs · Action badges
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── View Toggle Extension ──────────────────────────────────────────── */
.view-btn[data-view="ceo"] {
  position: relative;
}

/* ─── Category Tabs ──────────────────────────────────────────────────── */
.ceo-cat-tabs {
  display: flex;
  gap: 2px;
  padding: 10px 16px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-section);
  border-bottom: 2px solid rgba(255,255,255,0.06);
}

.ceo-cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  color: var(--text-dim);
  font-size: 13px;
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ceo-cat-tab:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.03);
}

.ceo-cat-tab.active {
  color: #4F98A3;
  border-bottom-color: #4F98A3;
}

/* ─── Sub-Navigation ─────────────────────────────────────────────────── */
.ceo-nav {
  display: flex;
  gap: 4px;
  padding: 10px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: var(--bg-section);
}

.ceo-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 12.5px;
  font-family: var(--font);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ceo-nav-btn:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
}

.ceo-nav-btn.active {
  background: #4F98A3;
  border-color: #4F98A3;
  color: #fff;
}

.ceo-nav-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 18px;
  padding: 0 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 9px;
  font-size: 10.5px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.ceo-nav-btn.active .ceo-nav-count {
  background: rgba(0,0,0,0.25);
}

/* ─── Filters ────────────────────────────────────────────────────────── */
.ceo-filters {
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  flex-wrap: wrap;
  align-items: flex-end;
  background: var(--bg-section);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ceo-filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ceo-filter-group label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

.ceo-filter-input {
  padding: 6px 10px;
  background: var(--bg-input);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  color: var(--text-primary);
  font-size: 13px;
  font-family: var(--font);
  min-width: 180px;
  outline: none;
  transition: border-color 180ms;
}

.ceo-filter-input.ceo-filter-narrow {
  min-width: 110px;
  max-width: 140px;
}

.ceo-filter-input:focus {
  border-color: #4F98A3;
}

.ceo-filter-select {
  padding: 6px 10px;
  background: var(--bg-input);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  color: var(--text-primary);
  font-size: 13px;
  font-family: var(--font);
  min-width: 100px;
  outline: none;
  cursor: pointer;
}

.ceo-filter-actions {
  margin-left: auto;
}

/* ─── Multi-Select Dropdown ──────────────────────────────────────────── */
.ceo-multiselect {
  position: relative;
  min-width: 130px;
}

.ceo-ms-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  padding: 6px 10px;
  background: var(--bg-input);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  color: var(--text-primary);
  font-size: 12.5px;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 180ms;
}

.ceo-ms-trigger:hover {
  border-color: rgba(255,255,255,0.12);
}

.ceo-ms-trigger.has-selection {
  border-color: #4F98A3;
  background: rgba(79, 152, 163, 0.08);
}

.ceo-ms-arrow {
  font-size: 10px;
  opacity: 0.5;
  transition: transform 180ms;
}

.ceo-multiselect.open .ceo-ms-arrow {
  transform: rotate(180deg);
}

.ceo-ms-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  max-height: 260px;
  overflow-y: auto;
  background: var(--bg-card, #1e1e2e);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  z-index: 100;
  padding: 4px 0;
}

.ceo-multiselect.open .ceo-ms-dropdown {
  display: block;
}

.ceo-ms-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 12.5px;
  color: var(--text-primary);
  transition: background 100ms;
}

.ceo-ms-option:hover {
  background: rgba(255,255,255,0.05);
}

.ceo-ms-option input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #4F98A3;
  cursor: pointer;
  flex-shrink: 0;
}

.ceo-ms-label {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ceo-ms-count {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(255,255,255,0.06);
  padding: 1px 6px;
  border-radius: 8px;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.ceo-ms-clear {
  padding: 5px 12px;
  font-size: 11px;
  color: var(--accent-red);
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 2px;
}

.ceo-ms-clear:hover {
  background: rgba(255,71,87,0.08);
}

/* ─── Export Button ──────────────────────────────────────────────────── */
.ceo-export-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: rgba(79, 152, 163, 0.12);
  border: 1px solid rgba(79, 152, 163, 0.25);
  border-radius: 5px;
  color: #4F98A3;
  font-size: 12.5px;
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 180ms;
}

.ceo-export-btn:hover {
  background: rgba(108, 92, 231, 0.2);
  border-color: #4F98A3;
}

/* ─── Pagination ─────────────────────────────────────────────────────── */
.ceo-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
}

.ceo-page-btn {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 5px;
  color: var(--text-primary);
  font-size: 12px;
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  transition: all 150ms;
}

.ceo-page-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.08);
}

.ceo-page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.ceo-page-info {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

/* ─── Overview KPIs ──────────────────────────────────────────────────── */
.ceo-overview {
  padding: 24px 16px;
}

.ceo-kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.ceo-kpi-card {
  background: var(--bg-card);
  border: 1px solid #1E3347;
  border-radius: 8px;
  padding: 20px 16px;
  cursor: pointer;
  transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ceo-kpi-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}

.ceo-kpi-value {
  font-size: 32px;
  font-weight: 700;
  font-variant-numeric: tabular-nums lining-nums;
  line-height: 1.1;
  margin-bottom: 4px;
}

.ceo-kpi-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.ceo-kpi-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}

/* KPI card accent colors */
.ceo-kpi-total { border-top: 3px solid var(--accent-purple); }
.ceo-kpi-total .ceo-kpi-value { color: var(--text-primary); }

.ceo-kpi-paid { border-top: 3px solid var(--accent-green); }
.ceo-kpi-paid .ceo-kpi-value { color: var(--accent-green); }

.ceo-kpi-outstanding { border-top: 3px solid var(--accent-yellow); }
.ceo-kpi-outstanding .ceo-kpi-value { color: var(--accent-yellow); }

.ceo-kpi-overdue { border-top: 3px solid #C93400; }
.ceo-kpi-overdue .ceo-kpi-value { color: #C93400; }

.ceo-kpi-longoverdue { border-top: 3px solid var(--accent-red); }
.ceo-kpi-longoverdue .ceo-kpi-value { color: var(--accent-red); }

.ceo-kpi-review { border-top: 3px solid #f9ca24; }
.ceo-kpi-review .ceo-kpi-value { color: #f9ca24; }

/* ─── Split BF / AF KPI Row ──────────────────────────────────────────── */
.ceo-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.ceo-split-card {
  background: var(--bg-card);
  border: 1px solid #1E3347;
  border-radius: 8px;
  padding: 16px;
  border-left: 4px solid;
}

.ceo-split-bf {
  border-left-color: #5b8def;
}

.ceo-split-af {
  border-left-color: #C93400;
}

.ceo-split-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.ceo-split-icon {
  font-size: 16px;
}

.ceo-split-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
}

.ceo-split-body {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.ceo-split-main {
  font-size: 22px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.ceo-split-bf .ceo-split-main { color: #007AFF; }
.ceo-split-af .ceo-split-main { color: #C93400; }

.ceo-split-amounts {
  display: flex;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}

.ceo-split-sub {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}

.ceo-split-sub-label {
  font-weight: 600;
  margin-right: 4px;
}

/* ─── BF / AF Count Badges ───────────────────────────────────────────── */
.ceo-count-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.ceo-count-bf {
  background: rgba(91, 141, 239, 0.15);
  color: #5b8def;
}

.ceo-count-af {
  background: rgba(255, 107, 53, 0.15);
  color: #C93400;
}

.ceo-count-exp {
  background: rgba(255, 195, 18, 0.12);
  color: var(--accent-yellow);
}

/* ─── Action Status Badges ───────────────────────────────────────────── */
.ceo-action-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.ceo-action-paid {
  background: rgba(0, 196, 140, 0.15);
  color: var(--accent-green);
}

.ceo-action-waiting {
  background: rgba(255, 107, 53, 0.12);
  color: #C93400;
}

.ceo-action-overdue {
  background: rgba(255, 71, 87, 0.12);
  color: var(--accent-red);
}

.ceo-action-urgent {
  background: rgba(255, 71, 87, 0.25);
  color: #ff4757;
  text-transform: uppercase;
  animation: ceo-pulse 2s infinite;
}

@keyframes ceo-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.ceo-action-review {
  background: rgba(249, 202, 36, 0.15);
  color: #f9ca24;
}

.ceo-action-create {
  background: rgba(91, 141, 239, 0.15);
  color: #5b8def;
}

.ceo-action-option {
  background: rgba(255, 107, 53, 0.12);
  color: #C93400;
}

.ceo-action-interest {
  background: rgba(108, 92, 231, 0.15);
  color: var(--accent-purple);
}

.ceo-action-sent {
  background: rgba(108, 92, 231, 0.1);
  color: var(--accent-purple);
}

.ceo-action-ready {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
}

.ceo-action-draft {
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
}

.ceo-action-error {
  background: rgba(255, 71, 87, 0.15);
  color: var(--accent-red);
}

.ceo-action-manual {
  background: rgba(249, 202, 36, 0.12);
  color: #f9ca24;
}

.ceo-action-whats-that {
  background: rgba(170, 120, 255, 0.12);
  color: #aa78ff;
}

/* ─── Summary Bar ────────────────────────────────────────────────────── */
.ceo-summary-bar {
  display: flex;
  gap: 24px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid #1E3347;
  border-radius: 8px;
  flex-wrap: wrap;
}

.ceo-summary-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ceo-summary-title {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

.ceo-summary-value {
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.ceo-text-red { color: var(--accent-red); }
.ceo-text-dim { color: var(--text-dim); }

/* ─── Table ──────────────────────────────────────────────────────────── */
.ceo-table-summary {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
  flex-wrap: wrap;
}

.ceo-sum-pill {
  display: inline-flex;
  padding: 2px 8px;
  background: rgba(79, 152, 163, 0.12);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #4F98A3;
}

.ceo-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ceo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  font-variant-numeric: tabular-nums lining-nums;
}

.ceo-table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

.ceo-table th {
  background: var(--bg-header);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 9px 7px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  user-select: none;
}

.ceo-sortable {
  cursor: pointer;
}

.ceo-sortable:hover {
  color: var(--text-primary);
}

.ceo-sort-icon {
  font-size: 10px;
  opacity: 0.3;
}

.ceo-sort-icon.active {
  opacity: 1;
  color: #4F98A3;
}

.ceo-table td {
  padding: 7px 7px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-primary);
  vertical-align: middle;
}

.ceo-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

/* Column widths */
.ceo-th-num { width: 30px; }
.ceo-th-id { width: 70px; }
.ceo-th-project { min-width: 90px; }
.ceo-th-date { width: 90px; }
.ceo-th-cat { width: 90px; }
.ceo-th-inv { width: 140px; }
.ceo-th-type { width: 75px; }
.ceo-th-email { width: 120px; }
.ceo-th-event { min-width: 160px; }
.ceo-th-amount { width: 85px; text-align: right; }
.ceo-th-cur { width: 35px; }
.ceo-th-days { width: 50px; text-align: right; }
.ceo-th-od { width: 60px; text-align: right; }
.ceo-th-wire { width: 85px; }
.ceo-th-notes { min-width: 150px; }
.ceo-th-status { width: 120px; }
.ceo-th-month { width: 40px; }
.ceo-th-st { width: 40px; }

/* Cell styles */
.ceo-cell-num { color: var(--text-dim); font-size: 11px; }
.ceo-cell-id a { color: #4F98A3; text-decoration: none; }
.ceo-cell-id a:hover { text-decoration: underline; }
.ceo-cell-amount { text-align: right; font-weight: 600; }
.ceo-cell-days { text-align: right; }
.ceo-cell-od { text-align: right; font-weight: 600; }
.ceo-cell-email { color: var(--text-secondary); font-size: 11.5px; }
.ceo-cell-notes { color: var(--text-dim); font-size: 11.5px; }
.ceo-cell-icon { text-align: center; font-size: 13px; }
.ceo-cell-tiny { font-size: 10.5px; color: var(--text-dim); }
.ceo-cell-heart { font-size: 12px; white-space: nowrap; }
.ceo-cell-project { font-weight: 500; }
.ceo-cell-priority { font-size: 12px; white-space: nowrap; }

.ceo-amount-neg { color: var(--accent-red); }

/* Status pills */
.ceo-st-pill {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
}

.ceo-st-con { background: rgba(109,170,69,0.1); color: #6DAA45; }
.ceo-st-opt { background: rgba(255,149,0,0.1); color: #C93400; }
.ceo-st-int { background: rgba(0,122,255,0.1); color: var(--accent-purple); }

/* Category pills */
.ceo-cat-pill {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10.5px;
  font-weight: 600;
}

.ceo-cat-bf { background: rgba(79, 152, 163, 0.1); color: #4F98A3; }
.ceo-cat-af { background: rgba(232, 175, 52, 0.1); color: #E8AF34; }
.ceo-cat-exp { background: rgba(255, 195, 18, 0.12); color: var(--accent-yellow); }

.ceo-credit { color: var(--accent-red); font-weight: 600; font-size: 11px; }

/* OD Days coloring */
.ceo-od-mild { color: var(--accent-yellow); }
.ceo-od-warning { color: #C93400; }
.ceo-od-critical { color: var(--accent-red); font-weight: 700; }

/* WHT cert warning */
.ceo-wht-cert { color: var(--accent-red); font-weight: 700; }

/* Status badges (legacy) */
.ceo-badge-outstanding {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255, 195, 18, 0.12);
  color: var(--accent-yellow);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}

.ceo-badge-overdue {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255, 107, 53, 0.12);
  color: #C93400;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}

.ceo-badge-longoverdue {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255, 71, 87, 0.15);
  color: var(--accent-red);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
}

/* Row status coloring (subtle left border) */
.ceo-status-paid td:first-child { box-shadow: inset 3px 0 0 var(--accent-green); }
.ceo-status-outstanding td:first-child { box-shadow: inset 3px 0 0 var(--accent-yellow); }
.ceo-status-overdue td:first-child { box-shadow: inset 3px 0 0 #C93400; }
.ceo-status-long_overdue td:first-child { box-shadow: inset 3px 0 0 var(--accent-red); }
.ceo-status-paid_under_review td:first-child { box-shadow: inset 3px 0 0 #f9ca24; }
.ceo-status-option td:first-child { box-shadow: inset 3px 0 0 #C93400; }
.ceo-status-interest td:first-child { box-shadow: inset 3px 0 0 var(--accent-purple); }
.ceo-status-create td:first-child { box-shadow: inset 3px 0 0 var(--accent-blue); }
.ceo-status-error td:first-child { box-shadow: inset 3px 0 0 var(--accent-red); }

/* Empty state */
.ceo-empty {
  padding: 60px 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 15px;
}

/* Logistics table compact */
.ceo-table-logistics th,
.ceo-table-logistics td {
  padding: 6px 5px;
  font-size: 11.5px;
}

.ceo-table-logistics th {
  font-size: 10px;
}

/* ─── Mobile ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ceo-cat-tabs {
    padding: 6px 10px 0;
  }
  .ceo-cat-tab {
    padding: 8px 10px;
    font-size: 11.5px;
  }
  .ceo-nav {
    padding: 8px 12px;
    gap: 3px;
  }
  .ceo-nav-btn {
    padding: 6px 10px;
    font-size: 11px;
  }
  .ceo-kpi-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .ceo-kpi-value {
    font-size: 24px;
  }
  .ceo-filters {
    flex-direction: column;
    gap: 8px;
  }
  .ceo-filter-input {
    min-width: 100%;
  }
  .ceo-split-row {
    grid-template-columns: 1fr;
  }
  .ceo-filter-actions {
    margin-left: 0;
  }
}
/* deploy-bust: 1772543625 */
/* deploy-bust: 1772543625 */

/* ═══════════════════════════════════════════════════════════════════════
   Heart Badge System (all 19 types)
   ═══════════════════════════════════════════════════════════════════════ */
.ceo-hb {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.ceo-hb-paid        { background: rgba(52,199,89,0.12); color: var(--accent-green); }
.ceo-hb-artist-paid  { background: rgba(52,199,89,0.15); color: #34c759; }
.ceo-hb-artist-overdue { background: rgba(255,149,0,0.12); color: #C93400; }
.ceo-hb-artist-waiting { background: rgba(255,204,0,0.12); color: var(--accent-yellow); }
.ceo-hb-artist       { background: rgba(88,86,214,0.1); color: #5856d6; }
.ceo-hb-paid-tbc     { background: rgba(52,199,89,0.1); color: #34c759; }
.ceo-hb-waiting      { background: rgba(255,149,0,0.1); color: #C93400; }
.ceo-hb-overdue      { background: rgba(255,59,48,0.12); color: var(--accent-red); }
.ceo-hb-option       { background: rgba(255,149,0,0.1); color: #C93400; }
.ceo-hb-interest     { background: rgba(0,122,255,0.1); color: var(--accent-purple); }
.ceo-hb-create-contract { background: rgba(0,122,255,0.1); color: #007AFF; }
.ceo-hb-create-invoice  { background: rgba(0,122,255,0.08); color: #007AFF; }
.ceo-hb-private      { background: rgba(52,199,89,0.08); color: #34c759; }
.ceo-hb-logistics    { background: rgba(90,200,250,0.08); color: #5ac8fa; }
.ceo-hb-ex-agency    { background: rgba(52,199,89,0.1); color: #34c759; }
.ceo-hb-no-inv       { background: rgba(52,199,89,0.1); color: #34c759; }
.ceo-hb-cancelled    { background: rgba(255,59,48,0.15); color: var(--accent-red); }
.ceo-hb-whats-that   { background: rgba(88,86,214,0.1); color: #5856d6; }
.ceo-hb-error        { background: rgba(255,59,48,0.18); color: #ff3b30; }

/* Row status coloring — new types */
.ceo-status-overdue td:first-child { box-shadow: inset 3px 0 0 var(--accent-red); }
.ceo-status-cancelled td:first-child { box-shadow: inset 3px 0 0 #e74c3c; }
.ceo-status-logistics td:first-child { box-shadow: inset 3px 0 0 #7ed6df; }
.ceo-status-ex-agency td:first-child { box-shadow: inset 3px 0 0 #2ecc71; }
.ceo-status-whats-that td:first-child { box-shadow: inset 3px 0 0 #aa78ff; }

/* CAN status pill */
.ceo-st-can { background: rgba(255,59,48,0.12); color: var(--accent-red); }
/* INT status pill */
.ceo-st-int { background: rgba(0,122,255,0.1); color: var(--accent-purple); }

/* ═══════════════════════════════════════════════════════════════════════
   Weekly Overview KPI Cards
   ═══════════════════════════════════════════════════════════════════════ */
.ceo-weekly-kpis {
  padding: 16px;
}

.ceo-wk-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.ceo-wk-card {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.ceo-wk-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.ceo-wk-value {
  font-size: 24px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.ceo-wk-overdue {
  background: rgba(255,71,87,0.08);
  border-color: rgba(255,71,87,0.2);
}
.ceo-wk-overdue .ceo-wk-value { color: var(--accent-red); }

.ceo-wk-outstanding {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
}
.ceo-wk-outstanding .ceo-wk-value { color: var(--text-secondary); }

.ceo-wk-paid-inv {
  background: rgba(0,196,140,0.06);
  border-color: rgba(0,196,140,0.15);
}
.ceo-wk-paid-inv .ceo-wk-value { color: var(--accent-green); }

.ceo-wk-paid-datev {
  background: rgba(46,125,50,0.08);
  border-color: rgba(46,125,50,0.2);
}
.ceo-wk-paid-datev .ceo-wk-value { color: #4caf50; }

/* Clickable KPI tiles */
.ceo-wk-clickable {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.ceo-wk-clickable:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.ceo-wk-clickable:active {
  transform: translateY(0);
}
.ceo-wk-active.ceo-wk-overdue {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 2px rgba(255,71,87,0.35), inset 0 0 12px rgba(255,71,87,0.08);
}
.ceo-wk-active.ceo-wk-outstanding {
  border-color: rgba(0,0,0,0.25);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.1), inset 0 0 12px rgba(0,0,0,0.04);
}
.ceo-wk-active.ceo-wk-paid-inv {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 2px rgba(0,196,140,0.35), inset 0 0 12px rgba(0,196,140,0.08);
}
.ceo-wk-active.ceo-wk-paid-datev {
  border-color: #4caf50;
  box-shadow: 0 0 0 2px rgba(76,175,80,0.35), inset 0 0 12px rgba(76,175,80,0.08);
}

/* Heart icon counters row */
.ceo-heart-counters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0;
}

.ceo-heart-counter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-secondary);
}

.ceo-heart-counter b {
  font-variant-numeric: tabular-nums;
}

/* Clickable heart badge filters */
.ceo-heart-clickable {
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ceo-heart-clickable:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.ceo-heart-clickable.active {
  background: rgba(79,152,163,0.15);
  border-color: rgba(79,152,163,0.4);
  box-shadow: 0 0 0 1px rgba(79,152,163,0.2);
  color: var(--text-primary);
}

.ceo-heart-clear {
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
  font-size: 11px;
  font-weight: 600;
  transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ceo-heart-clear:hover {
  background: rgba(239,68,68,0.2);
  border-color: rgba(239,68,68,0.5);
}

/* Debug table compact */
.ceo-table-debug th,
.ceo-table-debug td {
  padding: 6px 5px;
  font-size: 11.5px;
}

.ceo-table-debug th {
  font-size: 10px;
}

.ceo-th-rc { width: 35px; text-align: center; }
.ceo-cell-rc { text-align: center; font-size: 11px; color: var(--text-dim); }
.ceo-cell-contract { font-size: 11.5px; white-space: nowrap; }
.ceo-cell-cat-rsp { font-size: 11px; }
.ceo-th-amt { width: 80px; text-align: right; }
.ceo-cell-amt { text-align: right; font-weight: 600; }

/* ─── Booking KPI Cards (Options / Interest) ─────────────────────── */
.ceo-booking-kpis {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  margin-bottom: 8px;
}

.ceo-bk-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 14px 24px;
  min-width: 120px;
  text-align: center;
}

.ceo-bk-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.ceo-bk-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font);
}

@media (max-width: 768px) {
  .ceo-wk-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .ceo-wk-value {
    font-size: 18px;
  }
  .ceo-booking-kpis {
    gap: 8px;
  }
  .ceo-bk-value {
    font-size: 20px;
  }
}

/* ═══ Finalize Invoices KPI Cards ═══ */
.ceo-finv-kpis {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  margin-bottom: 8px;
}

.ceo-finv-kpi {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 18px;
}

.ceo-finv-icon {
  font-size: 18px;
}

.ceo-finv-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ceo-finv-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font);
}

.ceo-finv-inspect {
  border-color: rgba(234, 179, 8, 0.3);
  background: rgba(234, 179, 8, 0.08);
}

.ceo-finv-inspect .ceo-finv-val {
  color: #eab308;
}

.ceo-finv-ready {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.08);
}

.ceo-finv-ready .ceo-finv-val {
  color: #22c55e;
}

/* INV Cat badges with icons */
.ceo-invcat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.ceo-invcat-inspect {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

.ceo-invcat-artist {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.ceo-invcat-bf {
  background: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
}

/* ═══ Finalize Contracts KPI Cards ═══ */
.ceo-fcon-kpis {
  padding: 12px 0;
  margin-bottom: 8px;
}

.ceo-fcon-row1 {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.ceo-fcon-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px 18px;
  min-width: 70px;
}

.ceo-fcon-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font);
}

.ceo-fcon-lbl {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ceo-fcon-con { border-color: rgba(96, 165, 250, 0.3); }
.ceo-fcon-con .ceo-fcon-val { color: #60a5fa; }
.ceo-fcon-finalize { border-color: rgba(234, 179, 8, 0.3); }
.ceo-fcon-finalize .ceo-fcon-val { color: #eab308; }
.ceo-fcon-sent { border-color: rgba(34, 197, 94, 0.3); }
.ceo-fcon-sent .ceo-fcon-val { color: #22c55e; }

.ceo-fcon-row2 {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.ceo-fcon-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 6px;
  padding: 4px 12px;
  min-width: 50px;
}

.ceo-fcon-stat span {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.ceo-fcon-stat b {
  font-size: 16px;
  font-weight: 700;
  color: #ef4444;
  font-family: var(--font);
}

.ceo-fcon-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  margin: 0 6px;
}

.ceo-fcon-pastunited, .ceo-fcon-count, .ceo-fcon-ready {
  background: rgba(148, 163, 184, 0.1);
  border-color: rgba(148, 163, 184, 0.2);
}

.ceo-fcon-pastunited b, .ceo-fcon-count b, .ceo-fcon-ready b {
  color: #94a3b8;
}

/* Priority badges */
.ceo-pri-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.ceo-pri-noevents {
  background: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
}

.ceo-pri-month {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.ceo-pri-old {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.ceo-pri-future {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

/* Handshake badges */
.ceo-hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.ceo-hs-link {
  background: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
}

.ceo-hs-confirm {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.ceo-hs-finalize {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

/* Contract heart badges */
.ceo-chb {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.ceo-chb-noevents {
  background: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
}

.ceo-chb-returned {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

.ceo-chb-draft {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
}

/* ═══ Create Documents Header ═══ */
.ceo-cdocs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  margin-bottom: 8px;
}

.ceo-cdocs-kpis {
  display: flex;
  gap: 12px;
}

.ceo-setup-btn {
  padding: 8px 18px;
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 8px;
  color: #60a5fa;
  font-size: 13px;
  font-weight: 600;
  cursor: default;
  white-space: nowrap;
}

.ceo-cell-hs {
  white-space: nowrap;
}

/* ═══ Long Overdue KPI Cards ═══ */
.ceo-lo-kpis {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  margin-bottom: 8px;
}

.ceo-lo-card {
  padding: 14px 28px;
  border-radius: 10px;
  text-align: center;
  min-width: 180px;
}

.ceo-lo-bf {
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.ceo-lo-af {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.ceo-lo-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.ceo-lo-value {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ceo-lo-bf .ceo-lo-value {
  color: #eab308;
}

.ceo-lo-af .ceo-lo-value {
  color: #ef4444;
}

.ceo-lo-counts {
  display: flex;
  gap: 10px;
  margin-left: 8px;
}

.ceo-lo-count-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.ceo-lo-count-bf {
  color: #93c5fd;
  background: rgba(96, 165, 250, 0.1);
}

.ceo-lo-count-af {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.1);
}

/* Clickable Long Overdue tiles */
.ceo-lo-clickable {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.ceo-lo-clickable:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.ceo-lo-clickable:active {
  transform: translateY(0);
}
.ceo-lo-card.ceo-lo-active.ceo-lo-bf {
  border-color: #eab308;
  box-shadow: 0 0 0 2px rgba(234,179,8,0.4), inset 0 0 12px rgba(234,179,8,0.1);
}
.ceo-lo-card.ceo-lo-active.ceo-lo-af {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239,68,68,0.4), inset 0 0 12px rgba(239,68,68,0.1);
}
.ceo-lo-count-badge.ceo-lo-active.ceo-lo-count-bf {
  background: rgba(96, 165, 250, 0.25);
  box-shadow: 0 0 0 1px rgba(96,165,250,0.5);
}
.ceo-lo-count-badge.ceo-lo-active.ceo-lo-count-af {
  background: rgba(239, 68, 68, 0.25);
  box-shadow: 0 0 0 1px rgba(239,68,68,0.5);
}

/* ═══ Contracts KPI Dashboard (Overview + Priority) ═══ */
.ceo-ckpi {
  padding: 10px 0 8px;
}

.ceo-ckpi-row1 {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.ceo-ckpi-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  min-width: 64px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.ceo-ckpi-num {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #e2e8f0;
}

.ceo-ckpi-lbl {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ceo-ckpi-con { border-color: rgba(34, 197, 94, 0.3); background: rgba(34, 197, 94, 0.08); }
.ceo-ckpi-con .ceo-ckpi-num { color: #22c55e; }

.ceo-ckpi-finalize { border-color: rgba(234, 179, 8, 0.3); background: rgba(234, 179, 8, 0.08); }
.ceo-ckpi-finalize .ceo-ckpi-num { color: #eab308; }

.ceo-ckpi-sent { border-color: rgba(96, 165, 250, 0.3); background: rgba(96, 165, 250, 0.08); }
.ceo-ckpi-sent .ceo-ckpi-num { color: #60a5fa; }

.ceo-ckpi-followup { border-color: rgba(249, 115, 22, 0.3); background: rgba(249, 115, 22, 0.08); }
.ceo-ckpi-followup .ceo-ckpi-num { color: #f97316; }

.ceo-ckpi-confirm { border-color: rgba(168, 85, 247, 0.3); background: rgba(168, 85, 247, 0.08); }
.ceo-ckpi-confirm .ceo-ckpi-num { color: #a855f7; }

.ceo-ckpi-row2 {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.ceo-ckpi-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.ceo-ckpi-stat span {
  color: rgba(255,255,255,0.45);
}

.ceo-ckpi-stat b {
  color: #e2e8f0;
  font-weight: 700;
  font-size: 14px;
  margin-left: 2px;
}

.ceo-ckpi-ico {
  font-size: 11px;
}

.ceo-ckpi-sep {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.08);
  margin: 0 4px;
}

.ceo-ckpi-signed b { color: #22c55e; }

/* ═══ Contract Heart Badge (updated) ═══ */
.ceo-chb-signed {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.ceo-chb-sent {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.ceo-chb-ready {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
}

/* ═══ Handshake Badge (updated) ═══ */
.ceo-hs-sent {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.ceo-hs-returned {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

/* ═══ Priority Badge (updated) ═══ */
.ceo-pri-norush {
  background: rgba(148, 163, 184, 0.12);
  color: #94a3b8;
}

.ceo-pri-soon {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

.ceo-pri-urgent {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* ═══ INV Cat Badge - Expenses ═══ */
.ceo-invcat-exp {
  background: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
}

/* ═══════════════════════════════════════════════════════════════════════
   DARK THEME — CEO Board overrides
   Re-apply original dark-mode rgba(255,255,255,...) values
   ═══════════════════════════════════════════════════════════════════════ */
[data-theme="dark"] .ceo-board { border-bottom-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .ceo-section-header { border-bottom-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .ceo-kpi-card { border-color: #1E3347; }
[data-theme="dark"] .ceo-kpi-card:hover { background: #1A2B3D; }
[data-theme="dark"] .ceo-badge { background: rgba(255,255,255,0.06); }
[data-theme="dark"] .ceo-badge:hover { background: rgba(255,255,255,0.12); }
[data-theme="dark"] .ceo-badge.active { background: rgba(79,152,163,0.2); }
[data-theme="dark"] .ceo-agent-card { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .ceo-agent-row { border-bottom-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .ceo-inv-card { border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .ceo-inv-card:hover { border-color: rgba(255,255,255,0.2); }
[data-theme="dark"] .ceo-modal-overlay .ceo-modal { background: #152231; border-color: #1E3347; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
[data-theme="dark"] .ceo-modal-close { background: rgba(255,255,255,0.08); }
[data-theme="dark"] .ceo-modal-close:hover { background: rgba(255,255,255,0.15); }
[data-theme="dark"] .ceo-modal-section { border-bottom-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .ceo-action-chip { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .ceo-action-chip:hover { background: rgba(255,255,255,0.08); }
[data-theme="dark"] .ceo-split-card { border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .ceo-cat-tab { border-bottom-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .ceo-cat-tab:hover { background: rgba(255,255,255,0.03); }
[data-theme="dark"] .ceo-cat-tab.active { color: #4F98A3; border-bottom-color: #4F98A3; }
[data-theme="dark"] .cost-cat-pill { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .cost-cat-label { color: rgba(255,255,255,0.9); }
/* Status/priority badge colors stay the same — they have enough contrast on dark */
