

  .select2-container .select2-selection {
    border-radius: 14px;
    padding: 6px 12px;
    height: auto;
    background-color: #f8f9ff;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
  }

  .select2-container:hover .select2-selection:hover {
    border-radius: 14px;
    border: 1px solid #b591ef;
    padding: 6px 12px;
    height: auto;
    background-color: #f8f9ff;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
  }

  .select2-container:focus .select2-selection:focus {
    border-radius: 14px;
    border: 1px solid #b591ef;
    padding: 6px 12px;
    height: auto;
    background-color: #6c6d76;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
  }

  /* Активний (у фокусі) */
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:active {
  border-color: #a472ed;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(181, 145, 239, 0.25);
}

/* Текст */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #333;
  font-weight: 500;
  line-height: 1.5;
}

/* Стрілка */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}

/* Випадаючий список */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #b591ef;
  color: rgb(128, 124, 124);
}