Customize the set_page_config about page width

It could be targeted using CSS modifiers:

Before:

After:

Code:
st.markdown(
    """
    <style>
    [aria-label="dialog"]{
        width: 90%;
        background-color: pink;
    }
    </style>
    """, unsafe_allow_html=True
)