.multiselect-container {
  display: flex;
  box-sizing: border-box;
  align-items: start;
  justify-content: center;
  width: 100%;
}

.list-multiselect {
  min-width: 25rem;
  min-height: 20rem;
  max-height: 20rem;
  overflow-y: scroll;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-multiselect li {
  padding: 5px;
  padding-left: 20px;
  cursor: pointer;
}

.list-multiselect li:hover {
  background-color: #cfe2ff;
}

.list-multiselect li.selected {
  background-color: #1967d2;
  color: #fff;
}

.filter-selected-input {
  min-width: 25rem;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
}

.btn-multiselec-container {
  min-height: 20rem;
  max-height: 20rem;
  margin: 0.8rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buttons-multi-select button {
  border: 0;
  background-color: #fff;
}



/* Select2 */
.select2-container--bootstrap-5 .select2-selection--multiple .select2-search {
  border: 1px solid #dee2e6;
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}