/**
 * Select2 Rounded Corners (05.11.2025)
 * Максимально агрессивные селекторы для всех вариантов
 */

/* Контейнер с кастомным классом */
.select2-container.rounded-select .select2-selection {
    border-radius: 16px !important;
}

/* Глобально для всех Select2 на странице экспресс-формы */
.options-connect__select .select2-selection {
    border-radius: 16px !important;
}

/* Dropdown с кастомным классом */
.select2-dropdown.rounded-dropdown {
    border-radius: 16px !important;
}

/* Если класс не применился - глобально для ВСЕХ dropdown */
.select2-dropdown {
    border-radius: 16px !important;
}

/* Search box */
.select2-search__field {
    border-radius: 12px !important;
}

/* Темный текст */
.select2-results__option {
    color: #1f2937 !important;
}

/* Hover */
.select2-results__option--highlighted {
    background-color: rgba(141, 150, 178, 0.2) !important;
    color: #000 !important;
}

/* Fix for truncated text */
.select2-selection__rendered {
    display: block !important;
    width: 100% !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

.select2-container {
    width: 100% !important;
}

.select2-selection {
    width: 100% !important;
    min-width: 100% !important;
}
