.ml-lang-switcher {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ml-lang-switcher select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 999px;
  padding: 10px 36px 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  color: #0f172a;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14);
  cursor: pointer;
}

.ml-lang-switcher::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(15, 23, 42, 0.6);
  font-size: 12px;
}

@media (max-width: 420px) {
  .ml-lang-switcher select {
    padding: 8px 34px 8px 12px;
    font-size: 13px;
  }
}

