/* ELE TEST sandbox — PURPLE brand override.
 * Deploy: copy to the test blazor static mount → blazor_server/test/static_files/theme-override.css
 * Active only once the r2.0.0 image (which carries the override <link> in App.razor) is running.
 * Overrides the full Telerik Fluent "EQ" primary token family (base #0f6cbd → purple),
 * both the --kendo-color-primary* layer and its --tb-* source layer, so hover/active/subtle
 * states recolour too. Loaded last in <head>, so these :root values win by cascade. */
:root{
  /* base */
  --tb-kendo-color-primary:#9c36b5;
  --kendo-color-primary:#9c36b5;

  /* hover (darker) */
  --tb-kendo-color-primary-hover:#862e9c;
  --kendo-color-primary-hover:#862e9c;

  /* active (darkest) */
  --tb-kendo-color-primary-active:#6b2580;
  --kendo-color-primary-active:#6b2580;

  /* emphasis (light tint) */
  --tb-kendo-color-primary-emphasis:#eebefa;
  --kendo-color-primary-emphasis:#eebefa;

  /* subtle background + states */
  --tb-kendo-color-primary-subtle:#f8f0fc;
  --kendo-color-primary-subtle:#f8f0fc;
  --tb-kendo-color-primary-subtle-hover:#f3d9fa;
  --kendo-color-primary-subtle-hover:#f3d9fa;
  --tb-kendo-color-primary-subtle-active:#e599f7;
  --kendo-color-primary-subtle-active:#e599f7;

  /* dark text on a subtle background */
  --tb-kendo-color-primary-on-subtle:#5f2475;
  --kendo-color-primary-on-subtle:#5f2475;

  /* on-surface (matches base) */
  --tb-kendo-color-primary-on-surface:#9c36b5;
  --kendo-color-primary-on-surface:#9c36b5;

  /* Bootstrap primary — recolour the AppBar Sign-In button + NavMenu active/hover (they consume --bs-primary,
     not the Telerik token). --bs-primary follows the kendo primary; -rgb is the brand RGB; -border-subtle = hover. */
  --bs-primary:var(--kendo-color-primary);
  --bs-primary-rgb:156, 54, 181;
  --bs-primary-border-subtle:var(--kendo-color-primary-hover);

  /* Bootstrap link colour - .nav-link reads --bs-link-color (default #0d6efd); set it to the brand so
     every Bootstrap .nav-link surface (main nav, user-info popup, etc.) follows the theme. */
  --bs-link-color:var(--kendo-color-primary);
  --bs-link-color-rgb:156, 54, 181;
  --bs-link-hover-color:var(--kendo-color-primary-hover);
}
