.country-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
    transition: opacity 0.15s ease;
}

.country-link:hover {
    opacity: 0.85;
    text-decoration: underline;
}

.country-link-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.country-link-name {
    white-space: nowrap;
}

.country-link-static {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
