/* Contenedor General */
#tv-boat-search-form {
    max-width: 100%;
    padding:50px;
    background-color: rgba(255, 255, 255, 1); /* Fondo oscuro */
    color: white;
    border-radius: 8px;
}
#load-more-boats {

    margin:0 auto !important;
    justify-content: center !important;
    background-color: #a3664b !important; /* Copper */
    display: block;
    margin-top: 50px !important;

}

#load-more-boats:hover {
    background-color: #263055 !important; /* Azul  */
}

/* Filas del formulario */
.tv-boat-search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.tv-boat-search-field-min {
    display: none !important;
}

/* Campos de selección e input */
.tv-boat-search-field {
    flex: 1 1 calc(25% - 10px); /* Espaciado para 4 elementos por fila */
    padding: 10px;
    font-size: 14px;
    color: white; /* Texto blanco */
    background-color: #001233; /* Fondo oscuro */
    border: 1px solid #34495e; /* Bordes más oscuros */
    border-radius: 4px;
    box-sizing: border-box;
    appearance: none; /* Eliminar estilos por defecto */
}

/* Opciones dentro de los select */
.tv-boat-search-field option {
    color: #001233; /* Texto oscuro */
    background-color: white; /* Fondo blanco */
}

/* Hover y Foco */
.tv-boat-search-field:hover,
.tv-boat-search-field:focus {
    border-color: #263055; /* Resaltar bordes en hover/focus */
    outline: none;
}

/* Botón de búsqueda */
.tv-boat-search-button {
    flex: 1 1 100%; /* Ocupa toda la fila */
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    justify-content: center !important;
	margin-top: 20px;
    color: white;
    background-color: #0a2240 !important; /* Rojo oscuro */
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.tv-boat-search-button:hover {
    background-color: #a3664b !important; /* Rojo más intenso en hover */
}

.search_block_result {
    display: block !important;
}

.chosen-input {
  width: 100%
}

.tv-boat-search-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.tv-boat-search-filter {
    padding: 8px;
    font-size: 14px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.tv-boat-search-field {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.chosen-default {
  display: none !important;
}

@media (max-width: 768px) {
    .tv-boat-search-field {
        width: fit-content !important;
    }
}