
/* Estilos para los botones de cambio de idioma */

.lang-switcher {
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.lang-switcher button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.lang-switcher img {
  width: 30px;
  height: 20px;
  border-radius: 3px;
  transition: transform 0.2s;
}

.lang-switcher img:hover {
  transform: scale(1.1);
}


