Widgetbox alignment above the graph plot

Hi, I want to align my widgets on the top of respective graphs with some spacing between them but I’m not getting how to do that.

Please help. Thank You.

Al those solutions are not ideal:

You can put each widget in different widgetboxes with different widths

You can put empty Div widgets with set widths between the elements you want to space

You can use a nested grid layout

sub_grid1 = gridplot([[slider1,button1],[graph1]],toolbar_location=None)
sub_grid2 = gridplot([[slider2,button2],[graph2]],toolbar_location=None)

grid = gridplot([[subgrid1,subgrid2]])

``