.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.lang-switcher {
  margin-left: 1rem;
}

.lang-switcher .btn {
  font-size: 0.9rem;
  border-radius: 6px;
}


.modal-content {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.lang-buttons button {
  margin: 0.5rem;
  padding: 0.7rem 1.4rem;
  background-color: #34b7a7;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.lang-buttons button:hover {
  background-color: #0056b3;
}

.hidden {
  display: none;
}
