BACKGROUND_COLOR = "white" COLOR = "black" import streamlit as st def set_page_container_style( max_width: int = 1100, max_width_100_percent: bool = False, padding_top: int = 1, padding_right: int = 10, padding_left: int = 1, padding_bottom: int = 10, color: str = COLOR, background_color: str = BACKGROUND_COLOR, ): if max_width_100_percent: max_width_str = f"max-width: 100%;" else: max_width_str = f"max-width: {max_width}px;" st.markdown( f""" """, unsafe_allow_html=True, )