/*
 * FAN Courier brand accent overrides — minimal scope.
 *
 * Touches only the primary-button surface and the active-state
 * highlight. Does NOT recolor the navigation strip (left sidebar
 * stays Zammad's near-black), state colors, or article bubbles.
 *
 * Source colors from the FAN Courier Brandbook 2023 / app palette.
 */

:root,
:root[data-theme="dark"],
:root[data-theme="light"],
html.dark,
html.light {
  /* Main accent — drives active list rows, focus markers, CodeMirror highlights */
  --highlight: #28348B !important;

  /* Primary buttons (Update, Submit, Sign in) */
  --button-primary-background: #28348B !important;
  --button-primary-background-active: #1A2236 !important;

  /* Selected nav item background (when you have a ticket selected) */
  --menu-background-active: #28348B !important;
}

/* Login screen primary button — belt-and-braces */
.login .btn--primary,
.signup .btn--primary {
  background: #28348B !important;
}

.login .btn--primary:hover,
.signup .btn--primary:hover {
  background: #1A2236 !important;
}
