/* Branding CSS Variables */
/* Generated dynamically from domain configuration */

:root {
  --brand-primary: #007bff;
  --brand-primary-dark: #4500c1;
}

/* Apply dark mode brand color when system prefers dark */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --brand-primary: var(--brand-primary-dark);
  }
}

/* Apply dark mode brand color when explicitly set to dark */
[data-theme="dark"] {
  --brand-primary: var(--brand-primary-dark);
}
