.select2-container--default .select2-selection--multiple {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  padding: 0.65rem;
  font-size: 1rem;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da !important;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff !important;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

/* Renderovaná část s tagy */
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

/* Tagy */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  color: #212529;
  margin: 0 0 0.3rem 0;
  border-radius: 0.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Text uvnitř tagu */
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  padding: 0.4rem 0.4rem 0.4rem 1.3rem;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  flex: 1;
}

/* Křížek */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  font-size: 1.2rem;
  padding: 0 0.5rem 0.3rem 0.5rem;
  cursor: pointer;
  border-right: 1px solid #ced4da;
}


.select2-container--default .select2-selection--multiple .select2-search__field {
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: none;
  outline: none;
  caret-color: #495057;
  font-family: inherit;
  cursor: text;
}

