Display a longer html.Datalist menu

Hello everyone!

I’m currently using the following code to obtain a dcc.Input:

dcc.Input(
  id='ATC_entre', list = "listATC",
  placeholder='Entrer un code ATC puis validez...',
  type='text',
  style = {'width': '80%', 'display': 'flex', 'align-items': 'center', 'justify-content': 'center'}
),
 html.Datalist(id = "listATC"),
 html.Button('Go!', id='button_ATC', n_clicks_timestamp=0)

html_options

The thing is that I find the menu too small and I was wandering if there is any way to show more (if not all) options so that I wouldn’t need to scroll to find the option that I want!

Thanks in advance!