/**
 * Select2 Dark Theme for WattleCorp Form
 * Custom styling for country selector with dark mode
 */

/* Main container */
.select2-container--wcf-dark .select2-selection--multiple {
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 4px;
    min-height: 40px;
    padding: 4px 8px;
}

.select2-container--wcf-dark .select2-selection--multiple:focus,
.select2-container--wcf-dark.select2-container--focus .select2-selection--multiple {
    border-color: #666;
    outline: none;
    box-shadow: 0 0 0 2px rgba(102, 102, 102, 0.2);
}

/* Selected items (tags) */
.select2-container--wcf-dark .select2-selection--multiple .select2-selection__choice {
    background-color: #2d2d2d !important;
    border: 1px solid #555 !important;
    border-radius: 4px;
    color: #e0e0e0 !important;
    padding: 4px 28px 4px 10px !important;
    margin: 3px 5px 3px 0;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
}

/* Remove button (×) */
.select2-container--wcf-dark .select2-selection--multiple .select2-selection__choice__remove {
    position: absolute !important;
    right: 6px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #999 !important;
    font-size: 18px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    text-align: center !important;
    transition: color 0.2s ease;
}

.select2-container--wcf-dark .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ff4444 !important;
    background: none !important;
}

/* Search input */
.select2-container--wcf-dark .select2-search--inline .select2-search__field {
    background-color: transparent;
    color: #e0e0e0;
    border: none;
    outline: none;
    padding: 4px 0;
    margin: 3px 0;
}

.select2-container--wcf-dark .select2-search--inline .select2-search__field::placeholder {
    color: #666;
}

/* Dropdown */
.select2-container--wcf-dark .select2-dropdown {
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Dropdown search */
.select2-container--wcf-dark .select2-search--dropdown .select2-search__field {
    background-color: #2d2d2d;
    border: 1px solid #555;
    border-radius: 4px;
    color: #e0e0e0;
    padding: 8px 12px;
}

.select2-container--wcf-dark .select2-search--dropdown .select2-search__field:focus {
    border-color: #666;
    outline: none;
}

/* Dropdown results */
.select2-container--wcf-dark .select2-results__option {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 8px 12px;
}

.select2-container--wcf-dark .select2-results__option--highlighted[aria-selected] {
    background-color: #3d3d3d !important;
    color: #fff !important;
}

.select2-container--wcf-dark .select2-results__option[aria-selected=true] {
    background-color: #2d2d2d;
    color: #4CAF50;
}

.select2-container--wcf-dark .select2-results__option--disabled {
    color: #666;
}

/* No results message */
.select2-container--wcf-dark .select2-results__message {
    color: #999;
}

/* Loading message */
.select2-container--wcf-dark .select2-results__option--loading {
    color: #999;
}

/* Clear button */
.select2-container--wcf-dark .select2-selection__clear {
    color: #999;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 8px;
}

.select2-container--wcf-dark .select2-selection__clear:hover {
    color: #ff4444;
}

/* Scrollbar styling for dropdown */
.select2-container--wcf-dark .select2-results__options {
    scrollbar-width: thin;
    scrollbar-color: #555 #1a1a1a;
}

.select2-container--wcf-dark .select2-results__options::-webkit-scrollbar {
    width: 8px;
}

.select2-container--wcf-dark .select2-results__options::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.select2-container--wcf-dark .select2-results__options::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 4px;
}

.select2-container--wcf-dark .select2-results__options::-webkit-scrollbar-thumb:hover {
    background-color: #666;
}

/* Disabled state */
.select2-container--wcf-dark.select2-container--disabled .select2-selection--multiple {
    background-color: #0d0d0d;
    cursor: not-allowed;
}

.select2-container--wcf-dark.select2-container--disabled .select2-selection__choice {
    opacity: 0.6;
}

/* Focus state for accessibility */
.select2-container--wcf-dark .select2-selection--multiple:focus-within {
    border-color: #666;
    box-shadow: 0 0 0 2px rgba(102, 102, 102, 0.2);
}
