/* --- Base Chosen container --- */
.chosen-container .chosen-single {
  height: 38px; /* same as .form-select */
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  background-color: #fff;
  background-image: none;
  display: flex;
  align-items: center;
  box-shadow: none;
  font-size: 1rem;
}

/* --- Multi select (chosen-container-multi) --- */
.chosen-container-multi .chosen-choices {
  min-height: 38px; /* same as .form-select */
  padding: 0.375rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  background-color: #fff;
  background-image: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  box-shadow: none;
}

/* Search input inside multi */
.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  height: 24px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  box-shadow: none;
  background: transparent;
  font-size: 1rem;
}

/* Selected pills */
.chosen-container-multi .chosen-choices li.search-choice {
  margin: 0;
  padding: 0.25rem 1.25rem 0.25rem 0.5rem;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  background-color: #e9ecef;
  background-image: none;
  box-shadow: none;
  color: #212529;
  font-size: 0.875rem;
  line-height: 1.2;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  top: 50%;
  transform: translateY(-50%);
  right: 0.45rem;
}

  /* Remove old Chosen arrow */
  .chosen-container .chosen-single div {
    display: none;
  }

/* Bootstrap 5 style arrow */
.chosen-container.chosen-container-single .chosen-single::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-left: .3em solid transparent;
}

/* Hover */
.chosen-container .chosen-single:hover {
  border-color: #86b7fe;
}

.chosen-container-multi .chosen-choices:hover {
  border-color: #86b7fe;
}

/* Focus style */
.chosen-container-active.chosen-with-drop .chosen-single {
  border-color: #86b7fe;
  box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.chosen-container-active .chosen-choices {
  border-color: #86b7fe;
  box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

/* When open, match a single border between control and dropdown */
.chosen-container-multi.chosen-with-drop .chosen-choices {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Dropdown menu */
.chosen-container .chosen-drop {
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  margin-top: 2px;
}

.chosen-container.chosen-with-drop .chosen-drop {
  margin-top: 0;
}

.chosen-container-multi.chosen-with-drop .chosen-drop {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Search inside dropdown */
.chosen-container .chosen-search input {
  height: 38px;
  border-radius: 0.375rem;
  border: 1px solid #ced4da;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
}

/* Options */
.chosen-container .chosen-results li {
  padding: 0.4rem 0.75rem;
  font-size: 1rem;
}

  /* Selected option */
  .chosen-container .chosen-results li.highlighted {
    background-color: #0d6efd;
    color: white;
  }

/* Disabled */
.chosen-container.chosen-disabled .chosen-single {
  background-color: #e9ecef;
  border-color: #ced4da;
  cursor: not-allowed;
}

.chosen-container-multi.chosen-disabled .chosen-choices {
  background-color: #e9ecef;
  border-color: #ced4da;
  cursor: not-allowed;
}
