/* Select2 theme - matches Tailwind form inputs */

.select2-container--default .select2-selection--single {
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    height: 42px;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    line-height: normal;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.select2-container--default .select2-search--dropdown {
    padding: 8px;
    background: white;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: none;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
    padding: 0.5rem 0.75rem;
    outline: none;
    width: 100%;
    font-size: 14px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-bottom-color: #3b82f6;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    min-height: 38px;
    padding: 4px 8px;
}

.select2-container--default .select2-selection--multiple:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.select2-container {
    width: 100% !important;
}

.select2-results__option {
    padding: 10px 12px;
    font-size: 14px;
    color: #374151;
    transition: background-color 0.1s ease;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #eff6ff;
    color: #1e40af;
}

.select2-container--default .select2-results__option--selected {
    background-color: #f0fdf4;
    color: #166534;
}

.select2-results__option:not(:last-child) {
    border-bottom: 1px solid #f3f4f6;
}

.select2-container--default .select2-results__option .select2-results__option--selectable {
    cursor: pointer;
}

/* Dropdown shadow and border */
.select2-dropdown {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem !important;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.select2-container--open .select2-dropdown--below {
    margin-top: 4px;
}

/* Loading / no results message */
.select2-results__message {
    padding: 12px;
    color: #6b7280;
    font-size: 13px;
    text-align: center;
}

/* Author result item custom template */
.author-result {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-result__avatar {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background-color: #e0e7ff;
    color: #4338ca;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.author-result__name {
    font-weight: 500;
    color: #111827;
}

/* Multi-select tags styling */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    color: #1e40af;
    padding: 4px 10px 4px 36px;
    font-size: 13px;
    margin: 3px 4px 3px 0;
    position: relative;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #60a5fa;
    border-right: 1px solid #bfdbfe;
    border-left: none;
    border-top: none;
    border-bottom: none;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: transparent;
    border-radius: 6px 0 0 6px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #1e40af;
    background-color: #dbeafe;
}
