.select2-container {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    line-height: normal;
    min-width: 0;
    flex-grow: 1;
}

/* Видимая часть (selection) */
.select2-container .select2-selection {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
    border-radius: 0;
    height: auto;
}

.select2-container .select2-selection {
    position: relative;
    padding-right: 24px; /* место под стрелку */
}

.select2-container .select2-selection::after {
    content: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75L9 11.25L13.5 6.75' stroke='%23222324' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    position: absolute;
    margin-top: 2px;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.2s ease, margin-top .2s ease;
}

.select2-container--open .select2-selection::after {
    transform: translateY(-50%) rotate(180deg);
    margin-top: 0;
}

/* Текст выбранного значения */
.select2-container .select2-selection__rendered {
    margin: 0;
    padding: 0;
    color: inherit;
    font: inherit;
    line-height: inherit;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
    text-overflow: unset;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
     color: inherit;
}

/* Стрелка */
.select2-container .select2-selection__arrow {
    display: none; /* убираем кастомную стрелку */
}

/* Дропдаун */
.select2-dropdown {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
    border-radius: 0;
    z-index: 3000;
}

/* Опции */
.select2-results__option {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    background: none;
}

/* Подсветка при наведении */
.select2-results__option--highlighted {
    background: none;
    color: inherit;
}