/* Change the color of the selected items */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #EFEFEF; /* Background color for selected items */
    color: black;              /* Text color for selected items */
}

/* Change the color of the dropdown options */
.select2-container--default .select2-results__option {
    color: #333;               /* Default text color of dropdown options */
}

/* Change the color of the dropdown options on hover */
.select2-container--default .select2-results__option--highlighted {
    background-color: #EFEFEF; /* Background color on hover */
    color: white;              /* Text color on hover */
}
