/* Fix date input vertical alignment on mobile */
@media (max-width: 767px) {
  .form-search .form-control {
    height: 50px; /* Ensure sufficient height */
    line-height: 50px; /* Center text vertically */
    padding-top: 0;
    padding-bottom: 0;
    display: flex; /* Helps with some browsers */
    align-items: center;
  }
  
  /* Specific fix for date inputs to ensure text is centered */
  input[type="date"].form-control {
    line-height: 50px;
    min-height: 50px;
  }
}
