    /* Select2 Custom Styling */
    .select2-container--default .select2-selection--single {
        border: 1px solid #d9dee3 !important;
        border-radius: 0.8em !important;
        height: auto !important;
        padding: 0.5rem 0.75rem !important;
        transition: all 0.2s ease;
    }

    .select2-container--default .select2-selection--single:hover {
        border-color: #27213C !important;
        box-shadow: 0 0 0 0.1rem rgba(39, 33, 60, 0.1);
    }

    .select2-container--default.select2-container--focus .select2-selection--single,
    .select2-container--default.select2-container--open .select2-selection--single {
        border-color: #27213C !important;
        box-shadow: 0 0 0 0.2rem rgba(39, 33, 60, 0.15) !important;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #495057 !important;
        line-height: 1.5 !important;
        padding-left: 0.75rem !important;
        font-size: 0.9375rem;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 100% !important;
        right: 0.75rem !important;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border-color: #6c757d transparent transparent transparent !important;
        border-width: 6px 5px 0 5px !important;
        margin-left: -5px !important;
        margin-top: -3px !important;
    }

    .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
        border-color: transparent transparent #6c757d transparent !important;
        border-width: 0 5px 6px 5px !important;
    }

    /* Dropdown styling */
    .select2-dropdown {
        border: 1px solid #27213C !important;
        border-radius: 0.8em !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        margin-top: 0.25rem;
    }

    .select2-container--default .select2-results__option {
        padding: 0.75rem 1rem !important;
        font-size: 0.9375rem;
        cursor: pointer !important;
    }

    .select2-container--default .select2-results__option--highlighted[aria-selected] {
        background-color: #27213C !important;
        color: white !important;
        cursor: pointer !important;
    }

    .select2-container--default .select2-results__option[aria-selected=true] {
        background-color: #f8f9fa !important;
        color: #27213C !important;
        font-weight: 500;
        cursor: pointer !important;
    }

    /* Prevent scrollbar from being clickable */
    .select2-results__options {
        overflow-y: auto !important;
        cursor: default !important;
    }

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

    .select2-results__options::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    .select2-results__options::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }

    .select2-results__options::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .select2-search--dropdown {
        padding: 0.75rem !important;
    }

    .select2-search--dropdown .select2-search__field {
        border: 1px solid #d9dee3 !important;
        border-radius: 0.5em !important;
        padding: 0.5rem 0.75rem !important;
        font-size: 0.9375rem;
    }

    .select2-search--dropdown .select2-search__field:focus {
        border-color: #27213C !important;
        outline: none !important;
        box-shadow: 0 0 0 0.2rem rgba(39, 33, 60, 0.15);
    }

    .select2-success.form-control {
        border: 1px solid #d9dee3 !important;
        padding: 0 !important;
        background: transparent !important;
        border-radius: 0.8em !important;
    }