/* Agency Invoice Portal — small stylesheet layered on top of Tailwind CDN.
   Tailwind handles the bulk; this file covers a11y niceties and print. */

:root { color-scheme: light dark; }

/* Visible keyboard focus everywhere (Tailwind's ring, but guaranteed). */
:focus-visible {
  outline: 2px solid #0f766e;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Respect users who prefer less motion. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Numeric tables align nicely. */
.tabular { font-variant-numeric: tabular-nums; }

/* Print: hide chrome, show only the document body. */
@media print {
  aside, header, .no-print { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
}
