/* Sub-commit 1 placeholder. Tailwind via CDN handles 99% of styling;
   project-specific overrides will accumulate here as templates grow.
*/

/* HTMX request indicator: the .htmx-indicator class becomes visible
   while a request is in flight (HTMX swaps display:none → display:initial).
*/
.htmx-indicator {
  opacity: 0;
  transition: opacity 200ms ease-in;
}
.htmx-request .htmx-indicator {
  opacity: 1;
}
.htmx-request.htmx-indicator {
  opacity: 1;
}

/* Verdict badges (sub-commit 2 uses these). */
.verdict-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
