.select2-container {
    min-width: 150px;
    width: fit-content !important;
}

.select2-selection__arrow b {
    display: none;
}

.select2-selection__arrow {
    background-image: url('https://hitap.adeptiolab.com/wp-content/uploads/2025/07/icon-arrow-down-blue-1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    width: 24px;
    height: 100%;
    transition: transform 0.3s ease;
}

.select2-container--open .select2-selection__arrow {
    transform: rotate(180deg);
    filter: brightness(0) invert(1);
}

.select2-container .select2-selection--single {
    height: unset;
}

.select2-container--default .select2-selection--single {
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #263F8F;
    background-color: #DBEAFF;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-top: -10px;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.select2.select2-container.select2-container--default.select2-container--below.select2-container--focus.select2-container--open .select2-selection.select2-selection--single {
    background-color: #263F8F;
}

.select2.select2-container.select2-container--default.select2-container--below.select2-container--focus.select2-container--open .select2-selection__rendered {
    color: #fff;
}

.select2-container--default .select2-selection--single:hover {
    background-color: #B8D1FF;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 20px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-radius: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #263F8F;
    padding-left: 0px;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.select2-results__option {
    color: #263F8F;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
}

.select2-dropdown {
    border: unset;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #263F8F;
    color: #fff;
}

.select2-container--default .select2-results__option--selected {
    background-color: #E9F2FF;
    color: #263F8F;
}

.select2-results {
    padding: 10px;
}

.select2-container--default .select2-results>.select2-results__options {
    gap: 5px;
    display: flex;
    flex-direction: column;
}

.sort-input-placeholder {
    min-width: 150px;
    width: 190px;
    height: 52px; 
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

.sort-input-placeholder .placeholder {
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #263F8F;
    background-color: #DBEAFF;
    transition: all 0.2s ease-in-out;
    position: relative;
    height: 52px;
}

.sort-input-placeholder .placeholder .label {
    color: #263F8F;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 28px;
    font-size: 16px;
}

.sort-input-placeholder .placeholder .arrow {
    background-image: url('https://hitap.adeptiolab.com/wp-content/uploads/2025/07/icon-arrow-down-blue.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    width: 24px;
    height: 100%;
    transition: transform 0.3s ease;
    position: absolute;
    top: 1px;
    right: 20px; 
    width: 20px;
}