/* Select2 Custom Styling */
.select2-container--bootstrap-5 .select2-selection {
  min-height: 48px;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.select2-container--bootstrap-5 .select2-selection:focus {
  border-color: #6366f1;
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.select2-container--bootstrap-5 .select2-selection__rendered {
  padding-left: 0;
}

.select2-container--bootstrap-5 .select2-selection__choice {
  background-color: #6366f1;
  border: none;
  color: white;
  border-radius: 0.375rem;
  padding: 0.25rem 0.5rem;
  margin: 0.125rem;
}

.select2-container--bootstrap-5 .select2-selection__choice__remove {
  color: white;
  margin-right: 0.5rem;
}

.select2-container--bootstrap-5 .select2-selection__choice__remove:hover {
  color: #e5e7eb;
}

.select2-dropdown {
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.select2-results__option--highlighted {
  background-color: #6366f1;
}

