.language-switcher {
  position: relative;
  z-index: 1000;
}

.language-button {
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  padding: 0.25em;
}

.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  list-style: none;
  margin: 0.25em 0 0;
  padding: 0;
  min-width: 150px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: none;
}

.language-menu.show {
  display: block;
}

.language-menu li {
  border-bottom: 1px solid #eee;
}

.language-menu li:last-child {
  border-bottom: none;
}

.language-menu a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #333;
}

.language-menu a:hover {
  background-color: #f0f0f0;
}