.select2-container .select2-selection--multiple .select2-selection__rendered {
    width: 100%!important;
}

/* Select2 genel kap (dropdown) stili */
.select2-container {
  width: 100% !important; /* Genişliği %100 yap */
}

/* Seçim kutusunun görünümü */
.select2-container .select2-selection--single {
  height: 42px; /* Yükseklik */
  border: 1px solid #d1d5db; /* Hafif gri çerçeve */
  border-radius: 8px; /* Yuvarlatılmış köşeler */
  background-color: #ffffff; /* Beyaz arka plan */
  padding: 8px 12px; /* İç boşluk */
  display: flex;
  align-items: center; /* Dikey ortalama */
  transition: all 0.3s ease; /* Hover efekti */
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05); /* Hafif gölge */
}

/* Seçim kutusunun hover durumu */
.select2-container .select2-selection--single:hover {
  border-color: #6c63ff; /* Hover olduğunda mavi çerçeve */
  background-color: #f3f4f6; /* Hafif gri arka plan */
}

/* Seçim kutusunun focus durumu */
.select2-container .select2-selection--single:focus {
  outline: none;
  border-color: #6c63ff; /* Odaklandığında çerçeve rengi */
  box-shadow: 0 0 4px #6c63ff; /* Mavi odak efekti */
}

/* Dropdown okun görünümü */
.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%; /* Yüksekliği ayarla */
  right: 12px; /* Sağ boşluk */
  display: flex;
  align-items: center; /* Dikey ortalama */
  color: #6b7280; /* Ok rengi (gri) */
}

/* Dropdown listenin stili */
.select2-container .select2-dropdown {
  border: 1px solid #d1d5db; /* Gri çerçeve */
  border-radius: 8px; /* Yuvarlatılmış köşeler */
  background-color: #ffffff; /* Beyaz arka plan */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge */
  padding: 4px 0; /* İç boşluk */
}

/* Dropdown liste öğeleri */
.select2-container .select2-results__option {
  padding: 8px 12px; /* İç boşluk */
  color: #374151; /* Metin rengi (koyu gri) */
  cursor: pointer; /* Tıklanabilir */
  transition: all 0.2s ease; /* Hover animasyonu */
}

/* Liste öğesinin hover durumu */
.select2-container .select2-results__option--highlighted {
  background-color: #6c63ff; /* Hover durumunda arka plan rengi */
  color: #ffffff; /* Metin rengi (beyaz) */
}

/* Seçili öğe */
.select2-container .select2-selection--single .select2-selection__rendered {
  color: #111827; /* Seçili metin rengi */
  font-weight: 500; /* Hafif kalın */
}

/* Çoklu seçim kutusu */
.select2-container .select2-selection--multiple {
  border: 1px solid #d1d5db; /* Çerçeve */
  border-radius: 8px; /* Yuvarlatılmış köşeler */
  background-color: #ffffff; /* Beyaz arka plan */
  padding: 4px 8px; /* İç boşluk */
  display: flex;
  flex-wrap: wrap; /* Birden çok öğeyi sar */
  gap: 4px; /* Etiketler arası boşluk */
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05); /* Hafif gölge */
}

/* Çoklu seçim kutusundaki etiketler */
.select2-container .select2-selection--multiple .select2-selection__choice {
  display: flex;
}


.select2-container--default .select2-selection--multiple .select2-selection__choice {
	padding: 10px 40px;
	color: #ffffff;
    background-color: #6b1de9;
	font-size: 19px;
	font-weight: 500;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
	background-color: #1c1c1c;
	padding: 10px 10px;
}

.select2-container .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ffffff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{
	background-color: #ff6600;
}

.select2-container--default .select2-results__option--selected {
    background-color: #6b1de9;
	color: #ffffff !important;
}

.select2-container .select2-results__option{
	font-size: 19px;
    font-weight: 500;
}

.select2-container--default .select2-results>.select2-results__options{
	max-height: 500px;
}

.select2-container .select2-dropdown{
	background-color: #dfdfdf;
}

.select2-container .select2-results__option{
	border: solid 1px #ffffff;
}

.select2-container .select2-search--inline .select2-search__field{
	padding-bottom: 40px;
}