Error bars in categorial scatter plot

How can I draw error bars for the total_bill paid on each day in this categorial and jittered scatter plot?

import plotly.express as px
import pandas as pd

df = pd.read_csv("https://raw.githubusercontent.com/mwaskom/seaborn-data/master/tips.csv")
fig = px.strip(df, x='day', y='total_bill', color="day")

# Customize traces
fig.update_traces(jitter=1, opacity=0.8, marker=dict(size=10, line=dict(width=2, color='black')))

fig.show()

This has now been solved here > How to show overlap points in scatter plot