/* Minimal custom styles to complement Tailwind */
:root {
  --focus-ring: 0 0 0 3px rgba(25, 85, 186, 0.35);
}

html, body {
  height: 100%;
}

/* Focus visible helper for better accessibility */
:focus {
  outline: none;
}
:focus-visible {
  box-shadow: var(--focus-ring);
  border-radius: 0.5rem;
}

/* Smooth animations defaults */
* {
  scroll-behavior: smooth;
}

/* Utility to hide elements with [hidden] */
[hidden] { display: none !important; }