/* Shared native-control palette: prevents the white browser dropdown in the
   dark public UI without changing existing form behavior. */
:root { color-scheme: dark; }
select, option, optgroup {
  color-scheme: dark !important;
  background-color: #10151c !important;
  color: #f4f7fb !important;
}
select:focus, input:focus, textarea:focus {
  outline: 2px solid rgba(112, 181, 255, .7);
  outline-offset: 2px;
}
