/* Ajustements complémentaires à Tailwind (chargé via CDN) */

:root {
  color-scheme: light;
}

/* Zone tactile confortable sur mobile pour tous les boutons/liens de formulaire */
button, a, input, select, textarea {
  -webkit-tap-highlight-color: transparent;
}

input[type="date"] {
  min-height: 44px;
}

/* Affichage impression : feuille de route condensée, sans navigation ni ombres */
@media print {
  .no-print {
    display: none !important;
  }

  body {
    background: #fff !important;
    padding-bottom: 0 !important;
  }

  .print-sheet {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  a {
    color: inherit !important;
    text-decoration: none !important;
  }

  a[href]::after {
    content: "";
  }
}

/* Scrollbar plus discrète sur desktop */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}
