.country-dropdown-list {
    padding: 0 12px;
}
.country-dropdown-item-wrapper {
    position: relative;
    padding: 4px 0;
}
.country-dropdown-trigger {
    color: #ffffff !important;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none !important;
    gap: 5px;
    transition: color 0.2s ease;
}

.country-dropdown-trigger .globe-icon {
    font-size: 16px;
}
.country-dropdown-trigger .arrow-icon {
    font-size: 11px;
    transition: transform 0.2s ease;
}
.country-dropdown-item-wrapper:hover .arrow-icon {
    transform: rotate(180deg);
}
.country-dropdown-menu {
    display: none;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 6px;
    padding: 6px 0;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1050;
    margin-top: 0px;
}
.country-dropdown-item-wrapper:hover .country-dropdown-menu {
    display: block;
    animation: countryDropdownFade 0.2s ease-in-out;
}
@keyframes countryDropdownFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
.country-dropdown-link {
    color: #ffffff !important;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none !important;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    gap: 5px;
}
.country-dropdown-link:hover {
    background-color: #2a2a2a;
    color: #00bcd4 !important;
}
.country-dropdown-link img {
    border-radius: 2px;
    object-fit: cover;
}