/* Стили форм */
.form-group {
    margin-bottom: 1rem;
}

.select2-container .select2-selection--single {
    height: calc(1.5em + 0.75rem + 2px) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: calc(1.5em + 0.75rem + 2px) !important;
}

.btn-submit {
    margin-top: 1rem;
}

/* Стили для Select2 */
.select2-container--default .select2-selection--single,
.select2-dropdown,
.select2-container--default .select2-results__option,
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option[aria-selected=true],
.select2-search__field {
    background-color: var(--bs-body-bg);
    border-color: var(--bs-border-color);
    color: var(--bs-body-color);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--bs-body-color);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--bs-primary);
    color: white;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--bs-secondary);
    color: var(--bs-body-color);
}