.language-switch {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  font-size: 0.9rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.language-switch a {
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.language-switch a:hover {
  background-color: #f5f5f5;
  border-color: #999;
  color: #000;
}

.language-switch .current-lang {
  font-weight: bold;
  color: #000;
  padding: 0.3rem 0.6rem;
  background-color: #eee;
  border-radius: 4px;
  border: 1px solid transparent;
}
