def section(col, label, name=""):
extra = f" section-header-{name}" if name else ""
col.markdown(f'
', unsafe_allow_html=True)
def inline_label(container, label):
lcol, icol = container.columns([1, 4])
lcol.markdown(
f'{label}
',
unsafe_allow_html=True,
)
return icol