/* BTLK ELITE - Select2 Bootstrap Patch Fixed */
.select2-container.form-control {
    background: #fff !important; /* White background taake filter saaf nazar aaye */
    box-shadow: none !important;
    border: 1px solid #0A2342 !important; /* Navy Border */
    display: block;
    padding: 0;
    border-radius: 4px;
    height: 38px;
}

/* Active State - Navy Border with Gold Glow */
.select2-container-active .select2-choice,
.select2-dropdown-open .select2-choice {
    border-color: #F4D35E !important; /* Gold Border on Click */
    transition: all 0.2s ease-in-out;
    /* Gold Glow instead of Blue */
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(244, 211, 94, 0.5) !important;
}

/* Choice text color fix */
.select2-container .select2-choice .select2-chosen {
    color: #0A2342 !important;
    font-weight: 500;
}