/* SUSE typeface — the actual open-source SUSE brand font (confirmed via
   fonts.google.com/specimen/SUSE), not a generic sans-serif guess. */
@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@300;400;500;600;700&display=swap');

/* SUSE green (#30BA78 → HSL), applied as this shadcn/ui-style dashboard's
   --primary/--ring custom properties (confirmed via the live app.css —
   it consumes hsl(var(--primary)) etc., not literal hex values). Both
   :root (light) and :root.dark need overriding: the chart's default
   theme swaps to a DIFFERENT --primary per mode (dark navy in light
   mode, near-white in dark mode) rather than keeping one brand color
   constant across both — SUSE green replaces both.
*/
:root {
  --primary: 151 59% 46%;
  --primary-foreground: 210 40% 98%;
  --ring: 151 59% 46%;
}
:root.dark {
  --primary: 151 59% 46%;
  --primary-foreground: 210 40% 98%;
  --ring: 151 59% 46%;
}

body, button, input, select, textarea {
  font-family: 'SUSE', Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
