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

.select2-container .select2-selection--single {
    height: 42px;
    border: 1px solid #ced4da;
    border-radius: 0.2rem;
    background-color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px;
    padding-left: 12px;
    color: #212529;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;
    right: 6px;
}

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

.select2-dropdown {
    border: 1px solid #ced4da;
    border-radius: 0.2rem;
    padding: 8px;
}

.select2-search--dropdown .select2-search__field {
    padding: 6px;
    border: 1px solid #ced4da;
    border-radius: 0.2rem;
}

.select2-results__option {
    padding: 8px 12px;
    margin: 4px 0;
    border-radius: .2px;
    background-color: #ebebeb;
    transition: all 0.2s ease;
    white-space: normal;
    font-weight: bold;
    font-size: 16px;
}

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

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #192a56;
    color: #fff;
}

.select2-results__options {
    padding: 4px;
}

.select2-results__option small {
    font-size: 0.85em;
    margin-top: 4px;
    display: block;
    opacity: 1;
    font-weight: normal;
    color: #333;
} 
.select2-results__option--highlighted[aria-selected] small, .select2-results__option[aria-selected=true] small {
    color: #fff;
}

/* Multiple select specific styles */
.select2-container--default .select2-selection--multiple {
    min-height: 38px;
    border: 1px solid #ced4da;
    border-radius: 0.2rem;
    background-color: #fff;
    padding: 2px 8px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #ebebeb;
    border: 1px solid #ced4da;
    border-radius: .2px;
    padding: 4px 8px;
    margin: 2px 4px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    margin-right: 6px;
    color: #666;
    position: static !important;
    border: none !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #333;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0px;
    font-size: 16px;
    line-height: 1;
}
.select2-container .select2-search--inline .select2-search__field::placeholder {
    color: #000000 !important;
    font-size: 16px;
}

/* Placeholder style */
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #000000;
    font-size: 16px;
    line-height: 32px;
    margin-left: 4px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #ced4da;
}

/* Fix for placeholder alignment */
.select2-container--default .select2-selection--multiple {
    display: flex;
    align-items: center;
    min-height: 38px;
}

/* Keep the container height consistent when empty */
.select2-container--default .select2-selection--multiple:not(.select2-selection--multiple--has-value) {
    min-height: 42px;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
    padding-left: 0px;
    margin-bottom: 0px;
    color: #000000;
}
.select2-container--default .select2-results>.select2-results__options {
    max-height: 400px !important;
}