.select2-container .select2-selection {
    border: 1px solid var(--grey--grey80, #D7D7D7);
    border-radius: 8px;
    padding: 12px 24px; /* справа место под стрелку */
    background: var(--white--white100, #FFF);
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s ease;
    height: 48px;
    display: flex;
    align-items: center;
}


.select2-container--open .select2-selection {
    border: 1px solid var(--azure--azure50, #006BE2);
    border-radius: 8px !important;
}
/* Текст */
.select2-container .select2-selection__rendered {
    color: var(--black--black10, #222324);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

/* Дропдаун */
.select2-dropdown {
    margin-top: 6px;
    border-radius: 8px !important;
    background-color: var(--white--white100, #FFFFFF);

    overflow: hidden;

    /* лёгкая тень */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);

    opacity: 0;
    transform: translateY(-5px);
    transition: opacity .2s ease, transform 0.2s ease;
}

.select2-container--open .select2-dropdown {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* лёгкая тень */
}

/* список опций */
.select2-results__options {
    max-height: 200px; /* ограничение по высоте */
    overflow-y: auto;
}

/* отдельная опция */
.select2-results__option {
    padding: 8px 12px;
    cursor: pointer;
}

/* подсветка при наведении */
.select2-results__option.select2-results__option--highlighted {
    background: var(--azure--azure50, #006BE2) !important;
    color: #fff;
}
/* ===== Select2: ellipsis для выбранного значения ===== */

.select2-container--default
.select2-selection--single
.select2-selection__rendered {
    display: block;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 26px;
}