/* SG Workflow - Custom Select2 Styling */

/* Select2 Container */
.select2-container {
    width: 100% !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Single Select Styling */
.select2-container .select2-selection--single {
    height: 40px !important;
    border: 2px solid #e8f4f8 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    padding: 0 12px !important;
    display: flex !important;
    align-items: center !important;
    transition: border-color 0.3s ease !important;
}

.select2-container .select2-selection--single:hover {
    border-color: #3498db !important;
}

.select2-container .select2-selection--single:focus {
    border-color: #0073aa !important;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1) !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    color: #34495e !important;
    font-size: 14px !important;
    line-height: 36px !important;
    padding: 0 !important;
}

.select2-container .select2-selection--single .select2-selection__placeholder {
    color: #7f8c8d !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
    right: 12px !important;
}

/* Multiple Select Styling */
.select2-container .select2-selection--multiple {
    min-height: 50px !important;
    height: auto !important;
    border: 2px solid #e8f4f8 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    padding: 4px 8px !important;
    display: flex !important;
    align-items: flex-start !important;
    transition: border-color 0.3s ease !important;
}

/* Allow wrapping when many users are selected */
.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.select2-container .select2-selection--multiple:hover {
    border-color: #3498db !important;
}

.select2-container .select2-selection--multiple:focus {
    border-color: #0073aa !important;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1) !important;
}

/* Choice Tags */
.select2-container .select2-selection--multiple .select2-selection__choice {
    background-color: #0073aa !important;
    border: 1px solid #0073aa !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    padding: 4px 8px !important;
    margin: 2px 4px 2px 0 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
    line-height: 1.2 !important;
    height: 26px !important;
    white-space: nowrap !important;
}

.select2-container .select2-selection--multiple .select2-selection__choice__remove {
    color: #ffffff !important;
    margin-right: 4px !important;
    font-weight: bold !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    cursor: pointer !important;
}

.select2-container .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ff6b6b !important;
}

/* Search Field */
.select2-container .select2-selection--multiple .select2-search__field {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    color: #34495e !important;
    min-width: 80px !important;
    font-size: 14px !important;
    padding: 0 !important;
    margin: 2px 0 !important;
    height: 26px !important;
    line-height: 26px !important;
}

/* Search container */
.select2-container .select2-selection--multiple .select2-search--inline {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Dropdown Styling */
.select2-dropdown {
    border: 2px solid #e8f4f8 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
    background: #ffffff !important;
    z-index: 9999 !important;
}

.select2-results__option {
    padding: 10px 12px !important;
    color: #34495e !important;
    font-size: 14px !important;
    transition: background-color 0.2s ease !important;
}

.select2-results__option--highlighted[aria-selected] {
    background-color: #0073aa !important;
    color: #ffffff !important;
}

.select2-results__option[aria-selected=true] {
    background-color: #f0f8ff !important;
    color: #0073aa !important;
}

/* Loading and Search States */
.select2-results__option--loading {
    color: #7f8c8d !important;
    font-style: italic !important;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #e8f4f8 !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    color: #34495e !important;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #0073aa !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1) !important;
}

/* Clear Button */
.select2-selection__clear {
    color: #7f8c8d !important;
    font-size: 16px !important;
    line-height: 1 !important;
    cursor: pointer !important;
}

.select2-selection__clear:hover {
    color: #e74c3c !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .select2-container .select2-selection--multiple {
        min-height: 44px !important;
        padding: 6px 12px !important;
    }
    
    .select2-container .select2-selection--multiple .select2-selection__choice {
        font-size: 11px !important;
        padding: 2px 6px !important;
    }
    
    .select2-dropdown {
        max-width: 100% !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .select2-container .select2-selection--single,
    .select2-container .select2-selection--multiple {
        background: #f8f9fa !important;
        border-color: #e8f4f8 !important;
        color: #34495e !important;
    }
    
    .select2-dropdown {
        background: #f8f9fa !important;
        border-color: #e8f4f8 !important;
    }
    
    .select2-results__option {
        color: #34495e !important;
    }
    
    .select2-search--dropdown .select2-search__field {
        background: #f8f9fa !important;
        border-color: #e8f4f8 !important;
        color: #34495e !important;
    }
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    cursor: default; !important;
    padding-left: 16px; !important;
    padding-right: 5px; !important;
    }