/* Tailwind handles ~all styling via CDN. Reserve this file for tweaks
   that can't be expressed as utility classes. */

/* iOS bounce-on-scroll often shows the wrong color at the edge — pin the
   background to the body/theme to avoid the white flash. */
html, body {
  background-color: #0f172a;
}

/* Dim out HTMX-targeted elements while a request is in flight so the user
   knows a refresh is happening. The default opacity transition is jarring. */
.htmx-request {
  opacity: 0.85;
  transition: opacity 200ms ease-in-out;
}
