.select2-container {
    width: 100% !important;
}

.select2-selection, .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 8px !important;
}

.select2-selection__rendered {
    align-items: center;
}

.select2-search__field {
    outline: none !important;
	height: 30px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #e8ba00;
    color: white;
}
.select2-container .select2-selection--multiple .select2-selection__rendered{
    margin-bottom: 0!important;
}

@media (max-width: 600px) {
    .select2-container--default .select2-selection--multiple {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        white-space: nowrap;
        height: 50px; /* Matches your selection height */
        align-items: center;
        border-radius: 8px !important;
    }
    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        float: none !important;
        display: inline-flex !important;
        align-items: center;
        margin: 0 5px !important;
        white-space: nowrap;
        border-radius: 4px;
        padding: 0 8px;
    }
    
  }
  
