/* Global styles - served as /index.css */

input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
  width: 100%;
}

/* Transparent date input overlay for tap-to-open-calendar on touch devices */
.date-touch-overlay {
  pointer-events: none; /* desktop: clicks pass through to text input */
}
@media (hover: none) and (pointer: coarse) {
  .date-touch-overlay {
    pointer-events: auto; /* mobile/tablet: tap opens native calendar */
  }
}
