/* Contenedor del formulario */
.tfw-tour-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto; /* Centrar */
    padding: 15px;
}

/* Cada campo */
.tfw-tour-filter .tfw-field {
    flex: 0 1 auto !important;
    min-width: 150px;
}

/* Selects y botones */
.tfw-tour-filter select,
.tfw-tour-filter button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
}

/* Botón principal */
.tfw-tour-filter .tfw-button {
    background-color: #df6410 !important;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.tfw-tour-filter .tfw-button:hover {
    background-color: #000000 !important;
}

/* Responsividad */
@media (max-width: 768px) {
    
    .tfw-tour-filter .tfw-field {
    flex: 1 1 10px !important;
    min-width: 150px !important;
}
    
    .tfw-tour-filter {
        flex-direction: column;
        flex: 1 1 10px !important;
        align-items: stretch;
    }
    .tfw-tour-filter .tfw-field {
        width: 100%;
    }
    /* Botón principal */
.tfw-tour-filter .tfw-button {
   width: 200px;
}
}
