/*
 * Contraste consistente para os menus nativos dos comboboxes.
 * O color-scheme orienta o navegador e as regras de option cobrem
 * os motores que permitem estilizar diretamente a lista suspensa.
 */
select {
    color-scheme: dark;
}

select option,
select optgroup {
    background-color: #0b1522 !important;
    color: #f4f7fb !important;
}

select option:checked {
    background-color: #0d6075 !important;
    color: #ffffff !important;
}

select option:disabled {
    background-color: #0b1522 !important;
    color: #8292a2 !important;
}

@media (forced-colors: active) {
    select,
    select option,
    select optgroup {
        forced-color-adjust: auto;
    }
}
