/* Стили для простого переключателя */
.my-lang-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background-color: #1f1f1f;
  border: 1px solid #333;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  cursor: pointer;
}
.my-lang-button:hover {
  background-color: #2a2a2a;
}
.my-lang-list {
  display: none; /* ЭТА СТРОКА СКРЫВАЕТ СПИСОК ПО УМОЛЧАНИЮ */
  list-style: none; /* Эта строка убирает черные точки-маркеры */
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  margin: 0;
  padding: 5px;
  background-color: #1f1f1f;
  border: 1px solid #333;
  border-radius: 10px;
  min-width: 100%;
  box-sizing: border-box;
}
.my-lang-list a {
  display: block;
  padding: 8px 10px;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}
.my-lang-list a:hover {
  background-color: #2a2a2a;
}
/* ЭТА СТРОКА ПОКАЗЫВАЕТ СПИСОК ПРИ КЛИКЕ */
.my-lang-switcher.open .my-lang-list {
  display: block;
}