/* search field format */
.search-container {
    margin-bottom: 20px;
}

.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    height: 45px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    padding: 8px !important;
    font-size: 16px !important;
    background-color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px !important;
    color: #444 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 8px !important;
}

.select2-dropdown {
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.select2-results__option {
    padding: 8px 12px !important;
    font-size: 14px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #007bff !important;
}

/* RTL format */
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 1px !important;
    right: auto !important;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px !important;
    padding-left: 20px !important;
    text-align: right !important;
}

/* Estilos para la página de resultados */
.gallery {
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Prevenir desbordamiento horizontal */
body {
    overflow-x: hidden;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

/* Ajustes para el filtro */
.filter-dropdown {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Ajustes para los elementos del filtro */
.filter-tag {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}