/* lang-switch.css : styles pour le sélecteur de langue */

.lang-switch {
  position: fixed;
  top: 18px;
  left: 18px;
  display: flex;
  gap: 0.3em;
  z-index: 20001;
  background: rgba(35,41,70,0.92);
  border-radius: 18px;
  padding: 0.15em 0.5em;
  box-shadow: 0 2px 8px #23294644;
  pointer-events: auto;
}
.lang-btn {
  font-size: 1.35em;
  background: none;
  border: none;
  cursor: pointer;
  filter: grayscale(0.2) brightness(0.95);
  transition: filter 0.2s, transform 0.2s;
  border-radius: 50%;
  padding: 0.1em 0.2em;
  color: #fff;
}
.lang-btn:hover, .lang-btn:focus {
  filter: none;
  background: #6c63ff33;
  transform: scale(1.15);
}
@media (max-width: 600px) {
  .lang-switch {
    left: 6px;
    top: 6px;
    padding: 0.1em 0.2em;
  }
  .lang-btn { font-size: 1.1em; }
}
