/*
 * Hand-written CSS that is NOT part of the Tailwind build (styles/input.css -> wwwroot/css/site.css).
 * Anything added here survives `npm run build:css`, which regenerates site.css from scratch and
 * would silently drop any rule not present in the Tailwind source.
 */

/* Accent (orange) call-to-action button. Uses the same --accent / --accent-foreground
   CSS variables defined in styles/input.css :root, so it stays in sync with the theme. */
.btn-accent {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}
.btn-accent:hover {
  background-color: hsl(var(--accent) / 0.9);
}
