/* Основные стили для Select2 контейнера */
#hotels-search .select2-container {
    width: 386px !important;
    height: 64px;
    font-family: 'Gilroy-Medium', sans-serif;
    outline: none;
}
/* Основные стили для Select2 контейнера */
#hotels-search .select2-container {
    width: 386px !important;
    height: 64px;
    font-family: 'Gilroy-Medium', sans-serif;
    outline: none;
}

/* Стили для выбранного элемента */
#hotels-search .select2-container--default .select2-selection--single {
    height: 64px;
    border: none;
    border-radius: 15px;
    background-color: #F6EEE9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

#hotels-search .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #202020;
    width: 100%;
    text-align: center;
    padding: 0 40px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    position: absolute;
    left: 0;
}

/* Стрелка - зафиксирована справа */
#hotels-search .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 64px;
    width: 40px;
    right: 0;
    left: auto;
    background: transparent;
    position: absolute;
    border-left: none;
}

#hotels-search .select2-container--default .select2-selection--single .select2-selection__arrow b {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: #202020 transparent transparent transparent;
    border-width: 8px 6px 0 6px;
    margin: 0;
    transition: transform 0.2s ease;
}

/* Анимация стрелки */
#hotels-search .select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: translate(-50%, -50%) rotate(180deg);
}

/* Выпадающее меню */
#hotels-search .select2-dropdown {
    width: 386px !important;
    border: 1px solid #F6EEE9;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: -3px;
}

/* Элементы в выпадающем списке */
#hotels-search .select2-results__option {
    padding: 12px 20px;
    font-size: 16px;
    text-align: center;
}

/* Ховер состояния */
#hotels-search .select2-container--default .select2-selection--single:hover {
    border-color: #F6EEE9;
}

#hotels-search .select2-container--focus .select2-selection--single {
    border-color: #F6EEE9;
    box-shadow: 0 0 0 2px #F6EEE9;
}

#hotels-search .select2-container--default .select2-selection--single {
    background-image: none;
}