/* 
:root {
    --select2-bg: #1e1e1e;
    --select2-text: white;
    --select2-border: #444;
}

html.w-theme-dark .select2-container--default .select2-selection--single {
    background-color: #1e1e1e !important;
    color: white !important;
    border-color: #444 !important;
}

html.w-theme-dark .select2-dropdown {
    background-color: #1e1e1e !important;
    color: white !important;
}

html.w-theme-dark .select2-results__option {
    color: white !important;
}
html.w-theme-dark .select2-selection__rendered {
    color: white !important;
} */

/* Dark Theme */
html.w-theme-dark .select2-container--default .select2-selection--single,
html.w-theme-system[data-theme="dark"] .select2-container--default .select2-selection--single {
    background-color: #262626 !important;
    color: white !important;
    border-color: #444 !important;
}

html.w-theme-dark .select2-dropdown,
html.w-theme-system[data-theme="dark"] .select2-dropdown {
    background-color: #262626 !important;
    color: white !important;
}

html.w-theme-dark .select2-results__option,
html.w-theme-system[data-theme="dark"] .select2-results__option {
    color: white !important;
}

html.w-theme-dark .select2-selection__rendered,
html.w-theme-system[data-theme="dark"] .select2-selection__rendered {
    color: white !important;
}

html.w-theme-dark .select2-results__option--selected,
html.w-theme-system[data-theme="dark"] .select2-results__option--selected {
    background-color: #666666 !important;
}

/* Detect System Dark Mode */
@media (prefers-color-scheme: dark) {
    html.w-theme-system {
        --theme-bg: #262626;
        --theme-text: white;
        --theme-border: #444;
    }

    html.w-theme-system .select2-container--default .select2-selection--single {
        background-color: var(--theme-bg) !important;
        color: var(--theme-text) !important;
        border-color: var(--theme-border) !important;
    }

    html.w-theme-system .select2-dropdown {
        background-color: var(--theme-bg) !important;
        color: var(--theme-text) !important;
    }

    html.w-theme-system .select2-results__option {
        color: var(--theme-text) !important;
    }

    html.w-theme-system .select2-selection__rendered {
        color: var(--theme-text) !important;
    }

    html.w-theme-system .select2-results__option--selected {
        background-color: #666666 !important;
    }
}

/* Increase the width of the Select2 container */
.select2-container {
    width: 100% !important; /* Adjust as needed */
}

/* Increase the height and font size of the selected item */
.select2-selection {
    height: 43px !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center;
}

/* Increase the font size and padding in the dropdown */
.select2-results__option {
    font-size: 18px !important;
    padding: 15px 10px; /* Adjust spacing */
}

/* Increase the arrow size */
.select2-selection__arrow {
    width: 30px !important;
    height: 30px !important;
    margin-top: 5px;
}

