/* Shared single-choice dropdowns. Keep native keyboard and mobile pickers. */
html body select:not([multiple]):is(:not([size]), [size="1"]) {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  min-height: 48px;
  padding: .75rem 2.75rem .75rem 1rem;
  border: 1px solid rgba(198,181,255,.24);
  border-radius: 12px;
  background-color: #111326;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='m4 6 4 4 4-4' stroke='%23c6bddb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  color: #f3effa;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  box-shadow: none;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease;
}
html body select:not([multiple]):is(:not([size]), [size="1"]):hover:not(:disabled) {
  border-color: rgba(198,181,255,.5);
  background-color: #191b32;
}
html body select:not([multiple]):is(:not([size]), [size="1"]):focus-visible {
  outline: 2px solid #c6b5ff;
  outline-offset: 3px;
  border-color: #c6b5ff;
}
html body select:not([multiple]):is(:not([size]), [size="1"]):disabled {
  opacity: .55;
  cursor: not-allowed;
}
html body select[aria-invalid="true"] { border-color: #f292a4; }
html body select option, html body select optgroup { background: #111326; color: #f3effa; }
html body select option:disabled { color: #9d97ad; }
html body .language-control::after { content: none; }
html body .language-control select:not([multiple]):is(:not([size]), [size="1"]) {
  min-height: 44px;
  border-radius: 999px;
  background-color: rgba(255,255,255,.025);
  font-size: .875rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  html body .language-control select:not([multiple]):is(:not([size]), [size="1"]) { font-size: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  html body select:not([multiple]):is(:not([size]), [size="1"]) { transition: none; }
}
@media (forced-colors: active) {
  html body select:not([multiple]):is(:not([size]), [size="1"]) {
    appearance: auto;
    -webkit-appearance: auto;
    background-image: none;
    color: CanvasText;
    background-color: Canvas;
    border-color: ButtonText;
  }
}
