/* Select2 Base Styles */
.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 56px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 100%;
    position: absolute;
    top: 0;
    right: 14px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select2-container .select2-selection--single .select2-selection__arrow b {
    display: block;
    width: 10px;
    height: 6px;
    background: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23131315' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: translate(-50%, -50%) rotate(180deg);
    border: none;
}

.select2-dropdown {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
    margin-top: 4px;
}

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 8px;
}

.select2-search--dropdown .select2-search__field {
    padding: 12px 18px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Inter', var(--font-family-base);
    font-size: 16px;
    color: #131315;
}

.select2-search--dropdown .select2-search__field:focus {
    outline: none;
    border-color: #131315;
}

.select2-results {
    display: block;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 280px;
    overflow-y: auto;
}

.select2-results__option {
    padding: 12px 18px;
    user-select: none;
    -webkit-user-select: none;
    font-family: 'Inter', var(--font-family-base);
    font-size: 16px;
    color: #131315;
    cursor: pointer;
}

.select2-results__option[aria-selected="true"] {
    background-color: #F3F3F3;
    font-weight: 600;
}

.select2-results__option--highlighted[aria-selected] {
    background-color: #FFD04E;
    color: #131315;
}

.select2-container--default .select2-selection--single {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #131315;
    font-family: 'Inter', var(--font-family-base);
    font-size: 18px;
    line-height: 1;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #131315;
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #131315;
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px;
    font-size: 20px;
    color: #989898;
}

.select2-container--default .select2-selection--single .select2-selection__clear:hover {
    color: #131315;
}

/* Прячем стандартный select при активации select2 */
.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}

/* Overlay для закрытия dropdown */
.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: transparent;
}

/* Кастомный класс для dropdown поселков */
.filter-village-dropdown {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.filter-village-dropdown .select2-results__option {
    transition: background-color 0.15s ease;
}

/* Сообщение "Ничего не найдено" */
.select2-results__message {
    padding: 12px 18px;
    color: #989898;
    font-family: 'Inter', var(--font-family-base);
    font-size: 16px;
}

@media (max-width: 900px) {
    .select2-container .select2-selection--single {
        height: 50px;
    }
    .select2-container--default .select2-selection--single {
        border-radius: 8px;
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 16px;
    }
}
