/* Language selector modal */
.lang-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  font-family: "Open Sans", sans-serif;
}

.lang-modal {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 32px 32px;
  max-width: 420px;
  width: 90%;
  margin: auto;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.lang-modal-logo {
  max-width: 180px;
  margin-bottom: 18px;
  filter: brightness(0);
}

.lang-modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #009961;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: "Open Sans", sans-serif;
}

.lang-btn:hover {
  background: #007a4d;
}

.lang-flag {
  width: 26px;
  height: 17px;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}