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

        /* Select2 Selection Box */
        .select2-container--default .select2-selection--multiple {
            min-height: 42px;
            border-radius: 8px;
            border: 2px solid;
            padding: 4px 8px;
            transition: all 0.2s ease;
        }

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

        /* Dark Theme Selection */
        html[data-bs-theme='dark'] .select2-container--default .select2-selection--multiple {
            background: linear-gradient(135deg, #1f2937 0%, #1a2332 100%);
            border-color: #374151;
            color: var(--brand-fg, #e5e7eb);
        }

        html[data-bs-theme='dark'] .select2-container--default.select2-container--focus .select2-selection--multiple {
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
        }

        /* Light Theme Selection */
        html[data-bs-theme='light'] .select2-container--default .select2-selection--multiple {
            background: #ffffff;
            border-color: #d1d5db;
            color: #111827;
        }

        html[data-bs-theme='light'] .select2-container--default.select2-container--focus .select2-selection--multiple {
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        /* Selected Items (Tags) */
        .select2-container--default .select2-selection--multiple .select2-selection__choice {
            border-radius: 6px;
            padding: 4px 8px;
            margin: 3px 4px 3px 0;
            font-size: 0.875rem;
            font-weight: 500;
            border: none;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        html[data-bs-theme='dark'] .select2-container--default .select2-selection--multiple .select2-selection__choice {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: #ffffff;
        }

        html[data-bs-theme='light'] .select2-container--default .select2-selection--multiple .select2-selection__choice {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: #ffffff;
        }

        .select2-container--default .select2-selection--multiple .select2-selection__choice:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
        }

        /* Remove Button (X) */
        .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            font-weight: 700;
            margin-right: 6px;
            padding: 0 4px;
            background-color: rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            width: 18px;
            height: 18px;
        }

        .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
            color: #ffffff;
            background: color-mix(in srgb, var(--brand-danger) 80%, transparent);
            transform: scale(1.1);
        }

        .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
            padding-left: 0;
            padding-right: 0;
        }

        /* Dropdown */
        .select2-dropdown {
            border-radius: 8px;
            border: none;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            margin-top: 4px;
            overflow: hidden;
        }

        html[data-bs-theme='dark'] .select2-dropdown {
            background: #1f2937;
            border: 1px solid #374151;
        }

        html[data-bs-theme='light'] .select2-dropdown {
            background: #ffffff;
            border: 1px solid #e5e7eb;
        }

        /* Search Input */
        .select2-container--default .select2-search--dropdown .select2-search__field {
            border-radius: 6px;
            padding: 8px 12px;
            border: 1px solid;
            outline: none;
            font-size: 0.875rem;
        }

        html[data-bs-theme='dark'] .select2-container--default .select2-search--dropdown .select2-search__field {
            background-color: #374151;
            border-color: #4b5563;
            color: var(--brand-fg, #e5e7eb);
        }

        html[data-bs-theme='dark'] .select2-container--default .select2-search--dropdown .select2-search__field:focus {
            border-color: #3b82f6;
            background-color: #1f2937;
        }

        html[data-bs-theme='light'] .select2-container--default .select2-search--dropdown .select2-search__field {
            background-color: #f9fafb;
            border-color: #d1d5db;
            color: #111827;
        }

        html[data-bs-theme='light'] .select2-container--default .select2-search--dropdown .select2-search__field:focus {
            border-color: #3b82f6;
            background-color: #ffffff;
        }

        /* Results Options */
        .select2-container--default .select2-results__option {
            padding: 10px 12px;
            font-size: 0.875rem;
            transition: all 0.15s ease;
        }

        html[data-bs-theme='dark'] .select2-container--default .select2-results__option {
            color: var(--brand-fg, #e5e7eb);
        }

        html[data-bs-theme='light'] .select2-container--default .select2-results__option {
            color: #111827;
        }

        /* Highlighted Option */
        html[data-bs-theme='dark'] .select2-container--default .select2-results__option--highlighted {
            background: linear-gradient(135deg, #374151 0%, #2d3748 100%);
            color: #fff;
        }

        html[data-bs-theme='light'] .select2-container--default .select2-results__option--highlighted {
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            color: #1e40af;
        }

        /* Selected Option */
        html[data-bs-theme='dark'] .select2-container--default .select2-results__option[aria-selected=true] {
            background-color: #1e3a5f;
            color: #60a5fa;
            font-weight: 500;
        }

        html[data-bs-theme='light'] .select2-container--default .select2-results__option[aria-selected=true] {
            background-color: #dbeafe;
            color: #1e40af;
            font-weight: 500;
        }

        /* Placeholder */
        .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
            color: var(--brand-muted, #9ca3af);
            font-style: italic;
        }

        /* Scrollbar */
        .select2-results__options {
            max-height: 250px;
        }

        .select2-results__options::-webkit-scrollbar {
            width: 6px;
        }

        html[data-bs-theme='dark'] .select2-results__options::-webkit-scrollbar-track {
            background: #1f2937;
        }

        html[data-bs-theme='dark'] .select2-results__options::-webkit-scrollbar-thumb {
            background: #4b5563;
            border-radius: 3px;
        }

        html[data-bs-theme='light'] .select2-results__options::-webkit-scrollbar-track {
            background: #f3f4f6;
        }

        html[data-bs-theme='light'] .select2-results__options::-webkit-scrollbar-thumb {
            background: #d1d5db;
            border-radius: 3px;
        }
