/* Coordia — controles nativos coerentes com o tema escuro. */
html[data-theme="dark"],
html[data-theme="dark"] body{
  color-scheme:dark!important;
}

html[data-theme="dark"] select,
html[data-theme="dark"] select.input{
  color-scheme:dark!important;
  appearance:none;
  -webkit-appearance:none;
  min-width:0;
  padding-right:40px!important;
  border-color:rgba(255,255,255,.11)!important;
  background-color:var(--surface-2,#292b30)!important;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b8bdc8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E")!important;
  background-repeat:no-repeat!important;
  background-position:right 13px center!important;
  background-size:14px 14px!important;
  color:var(--text,#f2f3f6)!important;
  caret-color:var(--text,#f2f3f6);
}

html[data-theme="dark"] select:hover:not(:disabled){
  border-color:rgba(255,255,255,.19)!important;
  background-color:color-mix(in srgb,var(--surface-2,#292b30) 86%,white)!important;
}

html[data-theme="dark"] select:focus,
html[data-theme="dark"] select:focus-visible{
  border-color:var(--primary,#9588ff)!important;
  outline:0!important;
  box-shadow:0 0 0 3px color-mix(in srgb,var(--primary,#9588ff) 16%,transparent)!important;
}

html[data-theme="dark"] select:disabled{
  cursor:not-allowed;
  border-color:rgba(255,255,255,.065)!important;
  background-color:rgba(255,255,255,.025)!important;
  color:#777d88!important;
  opacity:.72;
}

/* A lista aberta é nativa, portanto cada item precisa declarar suas próprias cores. */
html[data-theme="dark"] select option,
html[data-theme="dark"] select optgroup{
  color-scheme:dark!important;
  border:0;
  background:#25272c!important;
  color:#edf0f4!important;
  font:500 14px/1.5 'DM Sans',system-ui,sans-serif;
}

html[data-theme="dark"] select option{
  padding:9px 12px;
}

html[data-theme="dark"] select option:checked{
  background:#6558d4!important;
  background:linear-gradient(0deg,#6558d4,#6558d4)!important;
  color:#fff!important;
  box-shadow:0 0 0 100vmax #6558d4 inset;
}

html[data-theme="dark"] select option:hover,
html[data-theme="dark"] select option:focus{
  background:#383446!important;
  color:#fff!important;
}

html[data-theme="dark"] select option:disabled{
  background:#222428!important;
  color:#747985!important;
}

html[data-theme="dark"] select optgroup{
  color:#aaa0ea!important;
  font-weight:800;
}

html[data-theme="dark"] select[multiple]{
  appearance:auto;
  -webkit-appearance:auto;
  padding:8px!important;
  background-image:none!important;
  scrollbar-color:#5e596e #25272c;
  scrollbar-width:thin;
}

@media(forced-colors:active){
  html[data-theme="dark"] select{appearance:auto;-webkit-appearance:auto;background-image:none!important}
}
