/* Gradient background per l'input data */
.datepicker-input {
  background-image: linear-gradient(
    to right,
    #020617 0%,   /* nero (tailwind neutral-950) */
    #020617 94%,  /* fino all'80% nero */
    #34d399 94%,  /* emerald-400 da qui */
    #34d399 100%  /* fino al 100% emerald */
  );
  background-color: #020617; /* fallback */
  color: #f9fafb;            /* testo chiaro (near neutral-50) */

  /* optional: per evitare problemi con gli stili di default */
  background-repeat: no-repeat;
  border-radius: 0.75rem;    /* match rounded-xl */
}