/* Basic, lightweight tweaks on top of Tailwind */

html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Make focus states slightly more obvious without heavy styling */
:focus-visible {
  outline: 2px solid #ef4444; /* primary-500 */
  outline-offset: 2px;
}

/* Improve input transitions */
input {
  transition: border-color 120ms ease, box-shadow 120ms ease;
}