.select2-container .select2-selection--multiple .select2-selection__choice {
    display: inline-block;
    white-space: nowrap;
    padding: 0.3rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 3px;
    line-height: normal;
    text-transform: uppercase;
    width: fit-content;
    cursor: pointer;
    margin: 0.3rem;
    border: none !important; /* Override Select2's default border */
}

/* Default tag style (when no color is selected) */
.select2-container .select2-selection__choice {
    background: #e8ecef !important;
    color: #6b7682 !important;
}

.select2-container--default .select2-selection--multiple {
    border: 0px solid #E0EBF0;
    border-bottom: 1px solid #E0EBF0;
}

/* Color-specific styles */
.select2-container .select2-selection__choice[data-color*="blue"] {
    background: #F1F7FF !important;
    color: #2266E2 !important;
}
.select2-container .select2-selection__choice[data-color*="blue"] button {
    color: #1049b4 !important;
    border-right: 1px solid #AEC0D9;
}

.select2-container .select2-selection__choice[data-color*="red"] {
    background: #FDEBEA !important;
    color: #CE4948 !important;
}
.select2-container .select2-selection__choice[data-color*="red"] button {
    color: #cd182a !important;
    border-right: 1px solid #D59794;
}

.select2-container .select2-selection__choice[data-color*="green"] {
    background: #DEF9E1 !important;
    color: #22E22E !important;
}
.select2-container .select2-selection__choice[data-color*="green"] button {
    color: #14c620 !important;
    border-right: 1px solid #22E22E;
}

.select2-container .select2-selection__choice[data-color*="yellow"] {
    background: #FBF6D3 !important;
    color: #D7C114 !important;
}
.select2-container .select2-selection__choice[data-color*="yellow"] button {
    color: #ad9b11 !important;
    border-right: 1px solid #e4dda3;
}

.select2-container .select2-selection__choice[data-color*="purple"] {
    background: #EFDEF9 !important;
    color: #9D22E2 !important;
}
.select2-container .select2-selection__choice[data-color*="purple"] button {
    color: #780ab8 !important;
    border-right: 1px solid #d5b1ea;
}

.select2-container .select2-selection__choice[data-color*="turquoise"] {
    background: #DEF8F9 !important;
    color: #18B9B9 !important;
}
.select2-container .select2-selection__choice[data-color*="turquoise"] button {
    color: #09a2a2 !important;
    border-right: 1px solid #a8dddf;
}

/* Style the remove (×) button */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    position: inherit;
    margin-right: 0.2em;
}

.select2-container .select2-selection__choice__remove:hover {
    opacity: 1;
    background: none !important;
}

/* Container adjustments */
.select2-container .select2-selection--multiple {
    min-height: auto;
}