/* SPDX-FileCopyrightText: 2026 Ryan Lahfa <ryan.lahfa@numerique.gouv.fr> */
/* SPDX-License-Identifier: CC-BY-SA-4.0 */

.language-switcher {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  margin-right: 0.5rem;
}

.language-switcher__link {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--icons, #ccc);
  border-radius: 0.3rem;
  text-decoration: none;
  font-size: 0.85em;
  line-height: 1.4;
  opacity: 0.85;
}

.language-switcher__link:hover {
  opacity: 1;
  text-decoration: none;
  border-color: var(--links, #4183c4);
}

.language-switcher__link.is-active {
  font-weight: 700;
  opacity: 1;
  pointer-events: none;
  background: var(--theme-popup-bg, rgba(0, 0, 0, 0.05));
  border-color: var(--theme-popup-border, #ccc);
}
