.select2-searchbox {
  width: 85%;
  margin: auto;
  position: relative;
}
.select2-searchbox::before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #a9bcdf;
  font-size: 18px;
  z-index: 10;
}
/* Container */
.select2-container {
  width: 100% !important;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
}

/* Main Select Box */
.select2-container--default .select2-selection--single {
  height: 55px;
  border: 2px solid #c9d8f3;
  border-radius: 8px;
  padding: 8px 14px;
  padding-left: 44px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

/* Text inside select */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #4a5568;
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
}

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

/* Focus effect */
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: #6ea8fe;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

/* Dropdown */
.select2-dropdown {
  border-radius: 8px;
  border: 2px solid #c9d8f3;
  overflow: hidden;
}

/* Search box */
.select2-search--dropdown {
  padding: 10px;
  background: #f6f7f9;
}

.select2-search--dropdown .select2-search__field {
  width: 100%;
  border: 1px solid #dcdfe6;
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 14px;
  outline: none;
}

/* Options background */
.select2-results__options {
  background: #f1f2f4;
}

/* Option */
.select2-results__option {
  padding: 10px 14px;
  font-size: 14px;
}

/* Hover option */
.select2-results__option--highlighted {
  background: #1e6bd6 !important;
  color: #fff;
}

/* Selected option */
.select2-results__option[aria-selected="true"] {
  background: #e9ecef;
}
