/* Shared country chip. Hosts can theme via CSS variables; defaults match
   the prior user-SPA implementation. */
.country-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--country-chip-bg, rgba(255, 255, 255, 0.7));
  border: 1px solid var(--country-chip-border, rgba(0, 0, 0, 0.12));
  border-radius: 999px;
  padding: 0.25rem 0.75rem 0.25rem 0.625rem;
  font-size: var(--country-chip-font-size, 0.8125rem);
  white-space: nowrap;
  color: var(--country-chip-text, inherit);
}
.country-chip .flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.country-chip .name {
  font-weight: 600;
  color: var(--country-chip-name-color, inherit);
}
