.language-switcher {
    /* position: absolute; */
    /* top: 10px; */
    /* right: 10px; */
    /* z-index: 1000; */
    display: flex;
    gap: 5px;
    align-items: center; /* Центрируем флаги */
}

.lang-btn.active {
  font-weight: bold;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid #999;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.lang-btn {
  background: none;
  border: none;
/*
  padding: 0 8px;
*/
  padding: 0 0;
  cursor: pointer;
  font-size: 1.5rem;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  height: 30px;
  width: 30px;
  justify-content: center; 
  display: flex;
  align-items: center; /* анимация для плавного перехода */
  
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(0,0,0,0.05);
}
