.select2-container{

    width: 100% !important;
    
  }


.select2-container .select2-selection--single {

    height: 32px;
    border-radius:  0.5rem;
    
  }

  .select2-container--default .select2-selection--single .select2-selection__rendered {

    line-height: 28px;
    font-size: 0.75rem;

    color: #495057;
  }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 28px;
    
  }

  .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-size: 0.75rem;

    color: #495057;
  }

/* Select2 Option Schriftgröße kleiner machen */

/* Für alle Select2 Optionen */
.select2-results__option {
    font-size: 0.75rem; /* 14px */
}

/* Für Select2 Dropdown Container */
.select2-dropdown {
    font-size: 0.75rem;
}

/* Für Select2 Selection (das ausgewählte Element) */
.select2-selection__rendered {
    font-size: 0.75rem;
}

/* Für Select2 Placeholder */
.select2-selection__placeholder {
    font-size: 0.75rem;
}

/* Alternative: Noch kleiner (12px) */
.select2-results__option {
    font-size: 0.75rem; /* 12px */
}

/* Für spezifische Select2 Felder mit ID oder Klasse */
#mein-select2-feld .select2-results__option,
.meine-select2-klasse .select2-results__option {
    font-size: 0.75rem;
}

/* Für Bootstrap Integration */
.select2-container--bootstrap .select2-results__option {
    font-size: 0.75rem;
}

/* Für Argon Dashboard Integration */
.select2-container--default .select2-results__option {
    font-size: 0.75rem;
}

/* Select2 Suchfeld sicherstellen, dass es funktioniert */
.select2-search__field {
    width: 100% !important;
    pointer-events: auto !important;
    z-index: 9999 !important;
}

.select2-search {
    pointer-events: auto !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0;
    pointer-events: auto !important;
}