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

.language-btn {
  font-size: 1.2rem;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.3s;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.language-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.language-btn.active {
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .language-switcher {
    margin: 0.5rem 0;
    justify-content: center;
  }
}