/* Ajustes base para pantallas pequeñas */
html, body {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  overscroll-behavior: none;
}

/* Botones de fichaje: area de toque amplia */
.punch-btn {
  touch-action: manipulation;
  min-height: 72px;
}

/* Evitar zoom al tocar inputs en iOS */
input, select, button {
  font-size: 16px;
}

.tabular-nums {
  font-variant-numeric: tabular-nums;
}

/* Corrige el conflicto de Tailwind entre el atributo hidden y utilidades flex/grid */
[hidden] {
  display: none !important;
}
