Possible the color when you hover over the st.sidebar?

Hi everyone! I wanted to ask if you knew how I could also hover over the st.sidebar.expander, st.write and/or checkbox elements. For example:

    with st.sidebar.expander("Holidays"):

    evaluate = st.sidebar.checkbox(
        "Evaluate my model", value=True, help=readme["tooltips"]["choice_eval"]
    )

st.checkbox(
ā€œLaunch forecastā€,
value=False,
help=readme[ā€œtooltipsā€][ā€œlaunch_forecastā€],
):

st.error(ā€œPlease check at least ā€˜Evaluation’ or ā€˜Forecast’ in the sidebar.ā€)

st.write(ā€œ# 3. Impact of components and regressorsā€

Hey @valeriofiorentini,

Here’s an example for st.expander:

import streamlit as st

with st.expander("Expand me"):
    st.write("Hello world")

css=f'''
.streamlit-expander:hover {{
    background-color: blue;
}}
'''
st.markdown(f'<style>{css}</style>', unsafe_allow_html=True)