/* Input field */
.select2-selection__rendered {
  color: black;
}

/* Around the search field */
.select2-search {
  color: black;
}

/* Search field */
.select2-search input {
  color: black;
}

/* Each result */
.select2-results {
  color: black;
}

/* Higlighted (hover) result */
.select2-results__option--highlighted {
  color: black;
}

/* Selected option */
.select2-results__option[aria-selected="true"] {
  color: black;
}
.select2-container .select2-selection--single{
  height: 37.89px !important;  
  display: block;
  width: 100%;
  min-width: 20rem;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #303030;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-clip: padding-box;
  border: var(--bs-border-width) solid #222;
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}