/**
 * 個別ゲーム共通の言語切替UIスタイル。
 * ゲームごとに配色テーマが異なるため、各ゲーム固有のCSS変数に依存せず
 * 汎用的な半透明の白背景+濃色テキストで、どのゲームヘッダーにも馴染むようにしている。
 */
.lang-switcher {
  font: inherit;
  font-size: 0.75rem;
  color: #12121f;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  max-width: 6.5rem;
}

html[dir="rtl"] .lang-switcher {
  direction: rtl;
}
