.language-switcher {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

.language-switcher label {
  color: #111827;
  font: inherit;
  font-weight: 700;
  white-space: nowrap;
}

.language-switcher select {
  min-width: 132px;
  max-width: 48vw;
  min-height: 34px;
  border: 1px solid #9ca3af;
  border-radius: 4px;
  background: #ffffff;
  color: #111827;
  font: inherit;
  cursor: pointer;
}

.language-switcher select:focus {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .language-switcher {
    top: 8px;
    left: 8px;
    right: 8px;
    justify-content: space-between;
  }

  .language-switcher select {
    flex: 1;
  }
}
