/* Select2 Custom Styling */
.select2-container--default .select2-selection--single {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    height: auto;
    padding: 8px 12px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #334155;
    line-height: 1.5;
    padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 8px;
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #94a3b8;
}

.select2-dropdown {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #3b82f6;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    /* Increased padding for larger input */
    font-size: 16px;
    /* Larger font size */
    line-height: 1.5;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Disabled state */
.select2-container--default.select2-container--disabled .select2-selection--single {
    background: #f1f5f9;
    border-color: #f1f5f9;
    cursor: not-allowed;
}

/* Multiple Selection Styling */
.select2-container--default .select2-selection--multiple {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    min-height: 45px;
    padding: 4px 8px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    color: #1d4ed8;
    padding: 4px 8px;
    margin-top: 4px;
    font-size: 14px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #1d4ed8;
    margin-right: 8px;
    border-right: 1px solid #bfdbfe;
    padding-right: 8px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background: transparent;
    color: #1e40af;
}