.country-dropdown {
    position: relative;
    z-index: 10000;
}

.country-dropdown-btn {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff !important;
    padding: 3px 8px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
}

.country-dropdown-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
}

.country-dropdown-btn img {
    width: 16px;
    height: 11px;
    border-radius: 1px;
}

.country-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    left: auto;
    background-color: #ffffff !important;
    min-width: 140px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    z-index: 999999 !important;
    list-style: none;
    padding: 4px 0;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.country-dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.country-dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.country-dropdown-menu .dropdown-item {
    padding: 8px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #0f2a3a !important;
    text-decoration: none !important;
    transition: all 0.15s;
    white-space: nowrap;
}

.country-dropdown-menu .dropdown-item:hover {
    background-color: #eb903c;
    color: #ffffff !important;
}

.country-dropdown-menu img {
    width: 16px;
    height: 11px;
    border-radius: 1px;
}

.dropdown-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 11;
}

.dropdown-overlay.show {
    display: block;
}

.dropdown .bi-chevron-down {
    margin-left: 5px;
}
