.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);
}

#country-coach {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: .5rem;
    padding: .5rem .75rem;
    font-size: 14px;
    max-width: 200px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
}

#country-coach[hidden] {
    display: none;
}

#coach-dismiss {
    color: #fff;
    border: none;
    border-radius: .25rem;
    cursor: pointer;
    margin-bottom: 5px;
}

.coach-arrow {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
}

.coach-bottom .coach-arrow {
    top: -6px;
    left: calc(50% - 6px);
    border-right: 1px solid rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(0,0,0,0.15);
    transform: rotate(225deg);
}

.coach-top .coach-arrow {
    bottom: -6px;
    left: calc(50% - 6px);
    border-left: 1px solid rgba(0,0,0,0.15);
    border-top: 1px solid rgba(0,0,0,0.15);
    transform: rotate(45deg);
}