
.select2-container {
    width: 100% !important;
    max-width: 100%;
}

 
    /* Container styling */
    .select2-container {
        width: 100% !important;
        max-width: 100%;
    }
    
    
    /* Main select box styling */
    .select2-container .select2-selection--multiple {
        min-height: calc(1.5em + 0.5rem + 2px);
        max-width: 100%;
        border: 1px solid #ced4da;
        border-radius: 0.2rem;
        box-sizing: border-box;
        display: block;
        position: relative;
        overflow: hidden;
    }
    
    
    /* Choice/tag styling */
    .select2-container--default .select2-selection--multiple .select2-selection__rendered {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        padding: 2px 4px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        list-style: none;
    }
    
    
    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: #e9ecef;
        border: 1px solid #ced4da;
        border-radius: 3px;
        padding: 1px 6px;
        margin: 2px;
        max-width: calc(100% - 10px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.875rem;
        display: inline-flex;
        align-items: center;
    }
    
    
    /* Search box styling */
    .select2-container--default .select2-selection--multiple .select2-search--inline {
        margin: 2px;
    }
    
    
    .select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
        margin: 0;
        padding: 0 6px;
        width: 100% !important;
        min-width: 100px;
        height: calc(1.5em + 0.25rem);
        font-size: 0.875rem;
    }
    
    
    /* Dropdown styling */
    .select2-dropdown {
        border: 1px solid #ced4da;
        border-radius: 0.2rem;
    }