/* HHQ Orchestrator branding — HHQ v2 primary palette overlay.
 * Source: Dashboard-Frontend-v2 src/plugins/vuetify/theme.ts (primary #E55C11).
 * Paperclip UI is shadcn/ui (Tailwind v4, oklch tokens, :root light + .dark).
 * #E55C11 = oklch(0.621 0.19 41.7). Override primary/ring/sidebar-primary for
 * both themes; loaded after the main bundle css so these win. */
:root {
  --primary: oklch(0.621 0.19 41.7);
  --primary-foreground: oklch(0.985 0 0);
  --ring: oklch(0.621 0.19 41.7);
  --sidebar-primary: oklch(0.621 0.19 41.7);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-ring: oklch(0.621 0.19 41.7);
}
.dark {
  --primary: oklch(0.621 0.19 41.7);
  --primary-foreground: oklch(0.985 0 0);
  --ring: oklch(0.621 0.19 41.7);
  --sidebar-primary: oklch(0.621 0.19 41.7);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-ring: oklch(0.621 0.19 41.7);
}
