/* app.css — CPS Pharmacy Delivery. Tailwind via CDN handles most of it.
   This file holds the few custom touches. */

html, body { font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; }

/* Smooth scroll + anti-FOUC for Tailwind CDN */
body { -webkit-font-smoothing: antialiased; }

/* Spinner for loading buttons */
button[type=submit][disabled] { opacity: 0.6; cursor: wait; }

/* Subtle gradient on the bg, behind Tailwind's slate-950 */
body {
  background-image: radial-gradient(circle at 50% -20%, rgba(245, 158, 11, 0.08), transparent 60%);
}

/* Focus ring helper (Tailwind handles the rest) */
input:focus { outline: none; }