
.lang-switcher {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #fff; /* или ваш цвет */
}

.lang-switcher .current {
  padding: 5px 10px;
  background: transparent;
  border-radius: 4px;
  user-select: none;
}

.lang-switcher .options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 9999;
  min-width: 100px;
  border-radius: 4px;
  overflow: hidden;
}

.lang-switcher .options a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color: #333;
}

.lang-switcher .options a:hover {
  background: #eee;
}

