.country-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* or any fixed size that works with your UI */
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
}

.country-icon .flag-icon {
    font-size: 40px; /* adjust size as needed */
    line-height: 1;
}

/* Optional: Style the dropdown */
.country-dropdown {
    position: absolute;
    padding: 8px 0;
    list-style: none;
    min-width: 160px;
    background: #221e1f;
}

.country-dropdown li a {
    display: inline-block;
    padding: 8px 12px;
    text-decoration: none;
    width: 100%;
    text-transform: uppercase;
    color: #BEBEBE;
}

.country-dropdown li a:hover {
    background: #272727;
    color: #7ac142;
}

#country-flag-desktop .flag-icon {
    font-size: 1.5rem;
    padding: 0;
}

#country-drop-selected .flag-icon {
    padding: 10px 15px;
}

.flag-icon-global {
    background-image:url(../flags/world_flag.jpg);
}
