/* Select2 Custom Styles for Registration Form */
.select2-container--default .select2-selection--single {
    height: 60px;
    padding: 0 15px;
    background-color: #fff;
    font-size: 14px;
    line-height: 48px;
    align-content: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333;
    padding-left: 0;
    padding-right: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    right: 10px;
}

.select2-container--default .select2-selection--single:focus {
    outline: none;
}

.select2-dropdown {
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-results__option {
    padding: 10px 15px;
    font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #eeeeee;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
}

/* Disabled state */
.select2-container--default .select2-selection--single[aria-disabled="true"] {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}
label.required::after,
.form-label.required::after,
label[required]::after {
    content: " *";
    color: #dc3545 !important;
    font-weight: bold;
}
input[required] + label::after,
select[required] + label::after,
textarea[required] + label::after {
    content: " *";
    color: #dc3545 !important;
    font-weight: bold;
}