/* BTLK ELITE SELECT2 OVERHAUL */

.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100% !important;
}

/* Base Style - Navy Border */
.select2-container .select2-choice {
    display: block;
    height: 38px; /* Standard Height */
    padding: 0 0 0 12px;
    position: relative;
    border: 1px solid #0A2342 !important; /* BTLK Navy */
    line-height: 38px;
    color: #0A2342;
    border-radius: 6px;
    background-color: #fff !important;
    background-image: none !important;
    transition: all 0.3s ease;
}

/* Arrow Design - Gold Accent */
.select2-container .select2-choice .select2-arrow {
    width: 30px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border-left: 1px solid #0A2342;
    background: #0A2342 !important; /* Navy Background for Arrow */
    border-radius: 0 5px 5px 0;
}

/* Gold Arrow Icon */
.select2-container .select2-choice .select2-arrow b {
    border-color: #F4D35E transparent transparent transparent !important; /* Gold Arrow */
    margin-top: 15px;
}

/* Results Dropdown - Premium Card Style */
.select2-drop {
    width: 100%;
    margin-top: 2px;
    position: absolute;
    z-index: 99999;
    background: #fff;
    border: 1px solid #0A2342;
    border-top: 3px solid #F4D35E !important; /* Gold Top Strip */
    border-radius: 0 0 6px 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none; /* Removed !important to allow JS to show it */
}

/* Jab dropdown khulay to ye class JS lagati hai */
.select2-drop-active {
    display: block !important;
}

/* Hover/Selection - Navy & Gold */
.select2-results .select2-highlighted {
    background: #0A2342 !important; /* Navy Blue background on hover */
    color: #F4D35E !important; /* Gold text on hover */
}

/* Input Search inside Select2 */
.select2-search input {
    border: 1px solid #0A2342 !important;
    border-radius: 4px;
    margin-top: 5px;
}

/* Disabled State */
.select2-container.select2-container-disabled .select2-choice {
    background: #f5f5f5 !important;
    border-color: #ccc !important;
    cursor: not-allowed;
}