#changeLocaleButton {
  display: none; /* Initially hidden */
  position: fixed;
  top: 26px;
  left: 30px;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#changeLocaleButton:hover {
  background-color: #0056b3;
}
.wrapper {
  display: none
}
span.wrapper {
  display: none; /* Hide all .wrapper spans by default */
}
span.wrapper[lang="en"] {
  display: inline; /* Show only the spans with lang="en" */
}
