/* Светлая тема Select2 */
[data-bs-theme="light"] .select2-container--default .select2-selection--single {
    background-color: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    color: var(--bs-body-color);
}

[data-bs-theme="light"] .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--bs-body-color);
}

[data-bs-theme="light"] .select2-dropdown {
    background-color: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
}

[data-bs-theme="light"] .select2-container--default .select2-results__option {
    color: var(--bs-body-color);
}

[data-bs-theme="light"] .select2-container--default .select2-results__option--highlighted {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

[data-bs-theme="light"] .select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    color: var(--bs-body-color);
}

/* Темная тема Select2 */
[data-bs-theme="dark"] .select2-container--default .select2-selection--single {
    background-color: #2c3e50;
    border: 1px solid #495057;
    color: #ffffff;
}

[data-bs-theme="dark"] .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff;
}

[data-bs-theme="dark"] .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #adb5bd;
}

[data-bs-theme="dark"] .select2-dropdown {
    background-color: #343a40;
    border: 1px solid #495057;
}

[data-bs-theme="dark"] .select2-container--default .select2-results__option {
    color: #ffffff;
    background-color: #343a40;
}

[data-bs-theme="dark"] .select2-container--default .select2-results__option--highlighted {
    background-color: #007bff;
    color: #ffffff;
}

[data-bs-theme="dark"] .select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #495057;
    color: #ffffff;
}

[data-bs-theme="dark"] .select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: #495057;
    border: 1px solid #6c757d;
    color: #ffffff;
}

[data-bs-theme="dark"] .select2-container--default .select2-search--dropdown .search2-search__field::placeholder {
    color: #adb5bd;
}

/* Стили для кастомного отображения пользователей */
.select2-result-user {
    padding: 8px 12px;
}

.select2-result-user__meta {
    margin-left: 0;
}

.select2-result-user__title {
    font-weight: 600;
    margin-bottom: 2px;
}

.select2-result-user__description {
    font-size: 0.875em;
    margin-bottom: 2px;
}

.select2-result-user__statistics {
    font-size: 0.8em;
}

[data-bs-theme="dark"] .select2-result-user__description,
[data-bs-theme="dark"] .select2-result-user__statistics {
    color: #adb5bd !important;
}