I have Dash app and I am trying to change the color of my dropdown list to have a black background and white text in "Bold arial". Here is the part of code with the dropdown parameters :
dcc.Dropdown(
id='langue_dropdown',
options=[{'label': i, 'value': i}
for i in langues],
value='fr',
placeholder="langue"),
style={'font-family': 'arial', "font-size": "1.2em",
'marginBottom': 10, 'marginTop': 2, 'text-align': 'center'})

When I change my code to get a black backround, code :
dcc.Dropdown(
id='langue_dropdown',
options=[{'label': i, 'value': i}
for i in langues],
value='fr',
placeholder="langue"),
style={'font-family': 'arial', "font-size": "1.2em",
'marginBottom': 10, 'marginTop': 2, 'text-align': 'center',"background-color":"#151515", "color": "white"})
I don't get the expected result, the backround of list menu not change to black ?

I’m new to Dash and plotly and don’t have much experience with css stylesheets, so please let me know if there is basic information that I haven’t provided.
Thanks.