.select2-search--dropdown .select2-search__field {
  width: 100%;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #ced4da;
  font-size: 1rem;
  box-sizing: border-box;
  outline: none;
  color: #495057;
  background-color: #fff;
  z-index: 1060 !important;
  position: relative;
  pointer-events: auto;
}

/* Fix for Select2 input not focusable inside Bootstrap modal */
.select2-container--open {
  z-index: 1060 !important;
  /* higher than modal backdrop */
}

.select2-dropdown {
  z-index: 1061 !important;
  /* higher than modal */
}

.select2-search--dropdown .select2-search__field:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), .15);
}

.select2-results__options li::after {
  display: none !important;
}

.select2-container .select2-selection--single {
  height: 48px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  background-color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #495057;
  line-height: 30px;
  padding-left: 0;
}

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

.select2-dropdown {
  border-radius: 8px;
  border: 1px solid #ced4da;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 1056 !important;
  /* Higher than Bootstrap modal (z-index: 1055) */
}

.select2-results__option--highlighted {
  background-color: var(--bs-primary) !important;
  color: var(--on-bs-primary) !important;
}

.select2-results__option {
  padding: 10px 16px;
  font-size: 1rem;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single.select2-selection--focus {
  border-color: var(--bs-primary);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), .25);
}