:root {
  --surface-1:      #fcfcfb;
  --page-plane:     #f9f9f7;
  --text-primary:   #0b0b0b;
  --text-secondary: #52514e;
  --text-muted:     #898781;
  --gridline:       #e1e0d9;
  --baseline:       #c3c2b7;
  --border:         rgba(11,11,11,0.10);

  --series-1: #2a78d6; /* blue   - default single-series bars */
  --series-2: #1baf7a; /* aqua   */
  --series-3: #eda100; /* yellow */
  --series-4: #008300; /* green  */
  --series-5: #4a3aa7; /* violet */
  --series-6: #e34948; /* red    */
  --series-7: #e87ba4; /* magenta */
  --series-8: #eb6834; /* orange */

  --series-1-wash: rgba(42,120,214,0.10);
  --radius: 10px;
  --font: system-ui, -apple-system, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --surface-1:      #1a1a19;
    --page-plane:     #0d0d0d;
    --text-primary:   #ffffff;
    --text-secondary: #c3c2b7;
    --text-muted:     #898781;
    --gridline:       #2c2c2a;
    --baseline:       #383835;
    --border:         rgba(255,255,255,0.10);

    --series-1: #3987e5;
    --series-2: #199e70;
    --series-3: #c98500;
    --series-4: #008300;
    --series-5: #9085e9;
    --series-6: #e66767;
    --series-7: #d55181;
    --series-8: #d95926;

    --series-1-wash: rgba(57,135,229,0.14);
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--page-plane);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

/* ---------- header ---------- */

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo-icon {
  width: 30px;
  height: 15px;
  color: var(--text-primary);
  flex-shrink: 0;
}

.brand-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-tag {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav-link {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
}

.site-nav-link:hover { color: var(--text-primary); background: var(--border); }

.site-nav-link.active {
  color: var(--text-primary);
  background: var(--series-1-wash);
}

/* ---------- account dropdown ---------- */

.nav-account { position: relative; }

.account-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-1);
  color: var(--text-primary);
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
}

.account-trigger:hover { background: var(--border); }

.account-trigger[aria-expanded="true"] {
  background: var(--series-1-wash);
  border-color: var(--series-1);
}

.account-icon { width: 18px; height: 18px; flex-shrink: 0; }

.account-chevron {
  font-size: 10px;
  color: var(--text-muted);
  transition: transform 0.15s ease;
}

.account-trigger[aria-expanded="true"] .account-chevron { transform: rotate(180deg); }

.account-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  padding: 6px;
  display: grid;
  gap: 2px;
  z-index: 30;
}

.account-dropdown[hidden] { display: none; }

.account-dropdown-item {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
}

.account-dropdown-item:hover { background: var(--border); }

/* ---------- VRN lookup page ---------- */

.vrn-intro {
  max-width: 640px;
  margin-bottom: 20px;
}

.vrn-intro h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.vrn-intro p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.vrn-search-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.vrn-search-row .vrn-form { flex: 0 1 auto; margin-bottom: 0; }

.vrn-quicklinks {
  flex: 1 1 220px;
  max-width: 320px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.vrn-quicklinks-label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.vrn-quicklinks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vrn-quicklink {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  font-family: var(--font);
}

.vrn-quicklink:hover { background: var(--border); }

.vrn-form[hidden] {
  display: none;
}

.vrn-form {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.vrn-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.vrn-label-mobile { display: none; }

@media (max-width: 700px) {
  .vrn-form {
    flex-direction: column;
    align-items: stretch;
  }
  .vrn-label-desktop { display: none; }
  .vrn-label-mobile { display: block; }
  #vrn-input { align-self: center; width: 100%; max-width: 240px; }
}

/* UK number plate look - fixed colours regardless of light/dark theme,
   since this represents a physical yellow plate, not themed UI chrome.
   Sized to the real UK plate aspect ratio (520mm x 111mm, ~4.7:1) rather
   than stretching to fill the row, so it reads as a plate and not a
   generic text input. */
#vrn-input {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 240px;
  height: 52px;
  padding: 0 14px;
  border-radius: 8px;
  border: 2px solid #0b0b0b;
  background: #f5d935;
  color: #0b0b0b;
  font-size: 22px;
  line-height: 48px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  font-family: Arial, "Helvetica Neue", sans-serif;
}

#vrn-input::placeholder { color: rgba(11,11,11,0.45); }
#vrn-input:focus { outline: 3px solid var(--series-1); outline-offset: 2px; }

.vrn-plate-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 8px;
  border: 2px solid #0b0b0b;
  background: #f5d935;
  color: #0b0b0b;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: Arial, "Helvetica Neue", sans-serif;
  margin: 0 0 10px;
}

.vrn-submit {
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  background: var(--series-1);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
}

.vrn-submit:hover { opacity: 0.9; }
.vrn-submit:disabled { opacity: 0.5; cursor: default; }

.vrn-vehicle-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
  display: block;
  background: var(--page-plane);
}

.vrn-confirm-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.vrn-confirm-layout .detail-grid { flex: 1 1 320px; margin-bottom: 0; }

.vrn-confirm-image {
  flex: 0 1 280px;
  min-width: 200px;
}

/* Empty until either paid tier resolves the VIN and returns an image - the
   free MOT confirmation step never calls VDG, so there's nothing to show
   here yet on first render. Collapses instead of reserving blank space. */
.vrn-confirm-image:empty { display: none; }

.vrn-confirm-image .vrn-vehicle-image { margin-bottom: 0; }

.vrn-enhanced-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  margin-top: 6px;
}

.vrn-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 700px) {
  .vrn-tier-grid { grid-template-columns: 1fr; }
}

.vrn-tier-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.vrn-tier-card .vrn-enhanced-btn { margin-top: 0; }

.vrn-tier-title {
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 0 8px;
}

.vrn-divider {
  border: none;
  border-top: 1px solid var(--gridline);
  margin: 28px 0 20px;
}

.vrn-enhanced-btn:hover { background: var(--border); opacity: 1; }

.vrn-status {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
}

.vrn-status.loading {
  background: var(--surface-1);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.vrn-status.error {
  background: rgba(227,73,72,0.10);
  border: 1px solid rgba(227,73,72,0.35);
  color: var(--text-primary);
}

.vrn-status.info {
  background: var(--series-1-wash);
  border: 1px solid var(--border);
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* ---------- activity page ---------- */

td.act-paid {
  background: rgba(235,104,52,0.12);
  color: var(--series-8);
  font-weight: 600;
}

td.act-free {
  background: rgba(0,131,0,0.10);
  color: var(--series-4);
  font-weight: 600;
}

.vin-search {
  position: relative;
  width: 320px;
  max-width: 100%;
}

#vin-search-input {
  width: 100%;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--page-plane);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font);
}

#vin-search-input:focus {
  outline: 2px solid var(--series-1);
  outline-offset: 1px;
}

.vin-search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  overflow: hidden;
  max-height: 320px;
  overflow-y: auto;
}

.vin-search-result {
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.vin-search-result:last-child { border-bottom: none; }
.vin-search-result:hover, .vin-search-result.active { background: var(--series-1-wash); }
.vin-search-result .vin { font-weight: 600; }
.vin-search-result .meta { color: var(--text-secondary); margin-left: 8px; }
.vin-search-empty { padding: 12px 14px; color: var(--text-muted); font-size: 13.5px; }

/* ---------- admin account list (search + scroll) ---------- */

label[for="admin-user-search"] {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

#admin-user-search {
  width: 100%;
  max-width: 360px;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--page-plane);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font);
  margin-bottom: 12px;
}

#admin-user-search:focus { outline: 2px solid var(--series-1); outline-offset: 1px; }

.admin-user-list {
  max-height: 360px;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.admin-user-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 13.5px;
  text-align: left;
  cursor: pointer;
}

.admin-user-row:last-child { border-bottom: none; }
.admin-user-row:hover { background: var(--series-1-wash); }
.admin-user-email { font-weight: 600; }

.admin-guide-version {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  margin-bottom: 10px;
}

.admin-guide-version:last-child { margin-bottom: 0; }

.admin-guide-version-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

/* ---------- layout ---------- */

main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
}

/* ---------- stat tiles ---------- */

.stat-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.stat-tile {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.stat-label {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.stat-value {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
}

.stat-sub {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.stat-sub .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}

/* ---------- filter bar ---------- */

.filter-bar[hidden] { display: none; }

.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 20px;
}

.filter-bar-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
}

.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--series-1-wash);
  color: var(--text-primary);
  border-radius: 999px;
  padding: 5px 6px 5px 12px;
  font-size: 13px;
}

.filter-chip button {
  border: none;
  background: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 50%;
}
.filter-chip button:hover { background: var(--border); color: var(--text-primary); }

.btn-clear-all {
  border: 1px solid var(--border);
  background: var(--page-plane);
  color: var(--text-secondary);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font);
}
.btn-clear-all:hover { color: var(--text-primary); }

/* ---------- charts ---------- */

.charts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.chart-wide { grid-column: span 2; }

@media (max-width: 860px) {
  .charts-grid { grid-template-columns: 1fr; }
  .chart-wide { grid-column: span 1; }
}

.chart-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px 12px;
}

.chart-card h2 {
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 0 2px;
}

.chart-sub {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.chart-canvas-wrap { position: relative; height: 220px; }
.chart-canvas-short { height: 160px; }
.chart-canvas-tall { height: 300px; }

.chart-scroll-viewport {
  height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* ---------- table ---------- */

.table-section {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 40px;
}

.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.table-header h2 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

thead th {
  text-align: left;
  padding: 8px 10px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--gridline);
  cursor: pointer;
  white-space: nowrap;
}
thead th:hover { color: var(--text-primary); }
thead th.sorted::after { content: " \25BE"; }
thead th.sorted.desc::after { content: " \25B4"; }

tbody td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--gridline);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

tbody tr { cursor: pointer; }
tbody tr:hover td { background: var(--series-1-wash); }

.table-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.table-pagination button {
  border: 1px solid var(--border);
  background: var(--page-plane);
  color: var(--text-primary);
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 13px;
}
.table-pagination button:disabled { opacity: 0.4; cursor: default; }

/* ---------- modal ---------- */

.modal-backdrop[hidden] { display: none; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  z-index: 100;
  overflow-y: auto;
}

.modal-panel {
  background: var(--surface-1);
  border-radius: var(--radius);
  padding: 26px 26px 20px;
  max-width: 640px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: none;
  font-size: 22px;
  line-height: 1;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 6px;
}
.modal-close:hover { color: var(--text-primary); }

.detail-vin {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 2px;
}

.detail-model-line {
  color: var(--text-secondary);
  font-size: 13.5px;
  margin-bottom: 16px;
}

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

.detail-field-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.detail-field-value { font-size: 14px; }

.detail-options h3 {
  font-size: 13px;
  margin: 0 0 8px;
  color: var(--text-secondary);
}

.option-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  max-height: 640px;
  overflow-y: auto;
}

.option-list li {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--page-plane);
  display: flex;
  gap: 8px;
}

.option-code {
  font-family: ui-monospace, SFMono-Regular, monospace;
  color: var(--text-muted);
  flex-shrink: 0;
}

.mot-table td { white-space: normal; vertical-align: top; }

td.mot-pass { color: var(--series-4); font-weight: 600; }
td.mot-fail { color: var(--series-6); font-weight: 600; }

.mot-annotations {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.mot-annotations li { display: flex; gap: 8px; font-size: 13px; }
.mot-annotations li.mot-dangerous { color: var(--series-6); font-weight: 600; }

.vrn-mot-expand-btn {
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
}

.vrn-mot-expand-btn:hover { background: var(--border); }

/* Vehicle confirmation ("build") card on the left, the model guide's
   narrative card on the right - collapses to stacked on narrow viewports. */
.vrn-confirm-guide-row {
  display: grid;
  grid-template-columns: 1fr 3fr; /* 25% vehicle build details / 75% LLM guide */
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .vrn-confirm-guide-row { grid-template-columns: 1fr; }
}

/* Section title doubles as the expand/collapse control - the revealed
   content is always the very next element, so there's no gap between the
   control and what it reveals (both engine-specific notes and worth having
   start collapsed). */
.vrn-guide-section-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  margin: 0 0 8px;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: left;
  cursor: pointer;
}

.vrn-guide-section-toggle:hover { color: var(--text-primary); }

.vrn-guide-section-chevron {
  display: inline-block;
  font-size: 10px;
  transition: transform 0.15s ease;
}

.vrn-guide-section-toggle[aria-expanded="true"] .vrn-guide-section-chevron {
  transform: rotate(90deg);
}

.vrn-guide-rating {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Rendered in reverse DOM order (5..1) so the CSS-only hover-highlight
   trick works: hovering a star highlights itself plus later siblings,
   which - because the row is flipped back to 1..5 visually - are the
   lower-numbered stars that appear before it on screen. */
.vrn-guide-stars { display: flex; flex-direction: row-reverse; gap: 2px; justify-content: flex-end; }

.vrn-guide-star {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 2px;
  color: var(--border);
}

.vrn-guide-star:hover, .vrn-guide-star:hover ~ .vrn-guide-star { color: var(--series-1); }
.vrn-guide-star-selected { color: var(--series-1); }

.vrn-chart-wrap { position: relative; }

.vrn-mileage-chart {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.vrn-chart-gridline { stroke: var(--gridline); stroke-width: 1; }

.vrn-chart-axis-label {
  font-size: 10px;
  fill: var(--text-muted);
  font-family: var(--font);
}

.vrn-chart-point-label {
  font-size: 11px;
  font-weight: 600;
  fill: var(--text-secondary);
  font-family: var(--font);
}

.vrn-chart-area { fill: var(--series-1-wash); stroke: none; }

.vrn-chart-line {
  fill: none;
  stroke: var(--series-1);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.vrn-chart-point circle {
  fill: var(--series-1);
  stroke: var(--surface-1);
  stroke-width: 2;
  cursor: pointer;
}

.vrn-chart-tooltip {
  position: absolute;
  pointer-events: none;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
