/**
 * Custom styles for message recipient selector using Select2
 */

/* Select2 container styling */
.select2-container--default .select2-selection--multiple {
    border: 1px solid #8c8f94;
    border-radius: 4px;
    min-height: 36px;
    padding: 2px 8px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

/* Selected items styling */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #f0f0f1;
    border: 1px solid #c3c4c7;
    border-radius: 3px;
    color: #2c3338;
    font-size: 13px;
    margin: 2px 4px 2px 0;
    padding: 2px 8px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #646970;
    font-size: 16px;
    margin-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #d63638;
}

/* Programme recipients */
.select2-container--default .select2-selection--multiple .select2-selection__choice[title*="Programme"] {
    background-color: #e7f3ff;
    border-color: #0073aa;
    color: #0073aa;
}

/* Group recipients */
.select2-container--default .select2-selection--multiple .select2-selection__choice[title*="Groupe"] {
    background-color: #fff2e7;
    border-color: #d63638;
    color: #d63638;
}

/* Individual recipients */
.select2-container--default .select2-selection--multiple .select2-selection__choice[title*="Individu"] {
    background-color: #f0fff4;
    border-color: #00a32a;
    color: #00a32a;
}

/* Dropdown styling */
.select2-container--default .select2-results__group {
    color: #2c3338;
    font-weight: 600;
    padding: 8px 12px 4px;
    background-color: #f6f7f7;
    border-bottom: 1px solid #dcdcde;
}

.select2-container--default .select2-results__option {
    padding: 8px 12px;
    font-size: 13px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #2271b1;
    color: #fff;
}

/* Option icons */
.select2-results__option .dashicons {
    margin-right: 8px;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 782px) {
    .select2-container--default .select2-selection--multiple {
        min-height: 40px;
    }
    
    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        font-size: 14px;
        padding: 4px 10px;
    }
}
