/*
Theme Name: Boliin Child
Theme URI: https://gaviaspreview.com/wp/boliin/
Author URI: https://themeforest.net/user/gavias
Author: Gaviasthemes Team
Description: Child theme for the Boliin theme.
Template: boliin
*/

/* CSS personalizado para corregir el ancho de los campos de fecha en el formulario de búsqueda */
/* Esto soluciona el problema de texto cortado en "Fecha de entrada" y "Fecha de salida" */

.boliin-search-form.layout-1 #search_form.form-col-3 .input-group > .is-active:not(.search_advanced_field), 
.boliin-search-form.layout-1-2 #search_form.form-col-3 .input-group > .is-active:not(.search_advanced_field) {
  max-width: calc( (100% - 100px) / 2.5) !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc( (100% - 100px) / 2.5);
  flex: 0 0 calc( (100% - 100px) / 2.5);
}

/* Para dispositivos móviles mantener el comportamiento original */
@media (max-width: 800px) {
  .boliin-search-form.layout-1 #search_form.form-col-3 .input-group > .is-active:not(.search_advanced_field), 
  .boliin-search-form.layout-1-2 #search_form.form-col-3 .input-group > .is-active:not(.search_advanced_field) {
    max-width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    border-bottom: 1px solid #E2DFEB;
    border-right: 0;
  }
}