/* ============================================================
   Sheet 2 of 3 — loads immediately AFTER <RadzenTheme />.
   Redefines ONLY the primary accent ramp. Every accented surface in
   the Radzen theme (selected menu items, grid/dropdown/pager selection,
   checkboxes, radios, sliders, progress bars, focus rings, primary
   buttons) derives from these five variables, so this one block
   recolors the whole app with zero component rules.
   ============================================================ */
:root, body {
  --rz-primary:              oklch(52% 0.16 246);  /* LocalTeams Field Blue */
  --rz-primary-light:        oklch(62% 0.14 246);
  --rz-primary-lighter:      oklch(94% 0.035 246);
  --rz-primary-dark:         oklch(46% 0.16 246);
  --rz-primary-darker:       oklch(40% 0.15 246);
  --rz-on-primary:           #ffffff;
  --rz-on-primary-lighter:   oklch(40% 0.15 246);
}

/* PlatformAdmin runs the same app in a violet context. Put this class on
   <body> (or the layout root) for platform-operator routes only. */
.lt-context-platform {
  --rz-primary:              oklch(52% 0.16 300);
  --rz-primary-light:        oklch(62% 0.14 300);
  --rz-primary-lighter:      oklch(94% 0.03 300);
  --rz-primary-dark:         oklch(46% 0.16 300);
  --rz-primary-darker:       oklch(40% 0.15 300);
  --rz-on-primary:           #ffffff;
  --rz-on-primary-lighter:   oklch(40% 0.15 300);
}
