/*
  ADMIN THEME TOKENS
  ------------------
  This is the only place colors get defined for the admin panel. style.css
  and dashboard.css never hardcode a color — they only ever read var(--...).

  This is deliberately its OWN palette — a neutral dark slate/graphite,
  not the customer app's green "Ledger" theme — so there's never a moment
  of confusion about which product is on screen, and so it's comfortable
  to stare at during a long support session.
*/

:root {
  --bg: #0e1013;
  --card: #171a1f;
  --panel2: #1f232a;
  --border: #2b303a;

  --text: #e6e8eb;
  --text-dim: #8b93a1;

  --accent: #5c7c99;
  --accent-dim: #23303a;

  --error: #e2635a;
  --error-dim: #3a2325;

  --warning: #d9a441;
  --warning-dim: #3a3020;

  --success: #4caf82;
  --success-dim: #1f3529;
}