/* Mohr-e Asil (Partaw) theme for the OHIF viewer — baked into our custom image
 * (infra/ohif/Dockerfile), loaded after OHIF's own app.bundle.css so it wins.
 *
 * OHIF v3 colors come from two systems: shadcn-style HSL CSS vars (used by
 * @ohif/ui-next, applied at runtime) and a legacy Tailwind palette (bg-primary-dark /
 * bg-bkg-*). We restyle both from OHIF's stock blue to the deep-ink + gold palette in
 * apps/portal/src/styles/global.css. !important so it beats OHIF's runtime theme.
 * Values are HSL triplets (var form) or hex. */
:root {
  --background: 184 64% 6% !important; /* ink-950 */
  --card: 184 67% 9% !important; /* ink-900 */
  --popover: 184 65% 12% !important; /* ink-800 */
  --primary: 42 54% 54% !important; /* gold */
  --primary-foreground: 184 64% 6% !important;
  --secondary: 176 14% 40% !important; /* sage */
  --secondary-foreground: 44 55% 90% !important;
  --highlight: 42 63% 73% !important; /* gold-bright */
  --muted: 184 65% 10% !important;
  --muted-foreground: 176 14% 65% !important;
  --accent: 184 60% 20% !important; /* ink-700 */
  --accent-foreground: 44 55% 90% !important;
  --input: 184 50% 15% !important;
  --ring: 42 54% 54% !important;
  --border: 42 25% 24% !important;
}
.bg-primary-dark {
  background-color: #072628 !important;
} /* toolbar */
.bg-secondary-dark {
  background-color: #0a3133 !important;
}
.bg-bkg-low {
  background-color: #04191b !important;
}
.bg-bkg-med {
  background-color: #072628 !important;
}
.bg-indigo-dark {
  background-color: #0a3133 !important;
}
.border-primary-active {
  border-color: #c9a24b !important;
}
.text-primary-active {
  color: #e7cd8e !important;
}
.text-primary-light {
  color: #d9b873 !important;
}
