.ajax-select {
    margin: 0;
    border-radius: 8px;
    background: #fff;
    padding: 8px 8px 8px 20px;
    height: 64px;
    font-size: 20px;
    border: none;
    line-height: 1;
    color: #3C1F1B;
    transition: .3s;
    border: 1px solid #fff;
}

.ajax-select {
    max-width: 100%;
   height: 50px;
   font-size: 16px;
   letter-spacing: -0.32px;
}

/* Container for Select2 */
.select2-container { 
    
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Control (input box appearance) */
.select2-container .select2-selection--single {
    height: 42px;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: none;
    transition: border-color 0.2s ease;
}

/* Hover/focus effect */
.select2-container--default .select2-selection--single:hover,
.select2-container--default .select2-selection--single:focus {
    border-color: #0073aa;
}

/* Selected text */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 30px;
    color: #333;
}

/* Dropdown menu */
.select2-dropdown {
    border-radius: 6px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Option styling */
.select2-results__option {
    padding: 8px 12px;
    font-size: 14px;
}

/* Highlighted option */
.select2-results__option--highlighted {
    background-color: #0073aa;
    color: white;
}