/* Select2 Styling */

/* Base container styling */
.select2-container {
  width: 100% !important;
  font-family: 'Poppins', sans-serif;
}

/* Dropdown wrapper */
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  border: none;
  border-bottom: 1px solid #CECECE;
  border-radius: 0;
  background-color: #F2F2F2;
  min-height: 38px;
}

/* Selection rendered text */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #181E24;
  line-height: 38px;
  padding-left: 0;
  font-family: 'Poppins', sans-serif;
  padding-left: 10px;
}

/* Fix white background in search field */
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #CECECE;
  background-color: #F2F2F2;
  border-radius: 0;
  padding: 8px;
  font-family: 'Poppins', sans-serif;
}

/* Dropdown styling */
.select2-dropdown {
  background-color: #F2F2F2;
  border: 1px solid #CECECE;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
}

/* Results options */
.select2-container--default .select2-results__option {
  padding: 8px 12px;
  color: #717171;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

/* Highlighted option */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #f5f5f5 !important;
  color: #181E24 !important;
}

/* Selected option */
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: rgba(139, 167, 37, 0.1);
  color: #181E24;
}

/* Selection clear button */
.select2-container--default .select2-selection--single .select2-selection__clear,
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  color: #717171;
  margin-right: 10px;
}

/* Multiple selection item */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #8BA725;
  color: white;
  border: none;
  border-radius: 16px;
  padding: 2px 8px;
  margin: 4px 4px 4px 0;
}

/* Multiple selection remove button */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: white;
  margin-right: 5px;
}

/* Dropdown open state */
.select2-container--open .select2-dropdown {
  border-color: #8BA725;
}

/* Focus states */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-bottom: 2px solid #8BA725;
}

/* Placeholder */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #A4A6A7;
  font-family: 'Poppins', sans-serif;
}

/* Arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #8BA725 transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #8BA725 transparent;
}

/* Loading indicator */
.select2-container--default .select2-selection--single .select2-selection__loading {
  background-color: #F2F2F2;
}