// Fix: text color in list view inputs (one2many/editable list)
.o_list_view .o_data_row input,
.o_list_view .o_data_row input:focus,
.o_list_view .o_data_row .o_field_widget input,
.o_list_view .o_data_row .o_field_widget input:focus,
.o_list_view .o_data_row .o_field_many2one input,
.o_list_view .o_data_row .o_field_many2one input:focus,
.o_list_view .o_data_row .o_field_many2many_tags input,
.o_list_view .o_selected_row input,
.o_selected_row .o_field_widget input {
    color: #111c43 !important;
    background-color: #ffffff !important;
    -webkit-text-fill-color: #111c43 !important;
}

// Fix: placeholder color
.o_list_view .o_data_row input::placeholder,
.o_selected_row .o_field_widget input::placeholder {
    color: #888888 !important;
    -webkit-text-fill-color: #888888 !important;
}

// Fix: dropdown options in list
.o_field_many2one .o_external_button,
.o-autocomplete--dropdown-item,
.ui-autocomplete .ui-menu-item {
    color: #111c43 !important;
    background-color: #ffffff !important;
}