.input-fecha {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    /* Otros estilos adicionales según tus preferencias */
}
/* Estilos cuando se pasa el mouse por encima */
.input-fecha:hover,
.input-fecha::-webkit-calendar-picker-indicator:hover {
  background-color: #FFDAB9;
}

/* Estilos cuando se selecciona */
.input-fecha:focus,
.input-fecha::-webkit-calendar-picker-indicator:focus {
  background-color: #FFA500;
  outline: none;
}