import streamlit as st def set_page_style(): """ Set custom CSS styling for the Streamlit app with light mode """ st.markdown(""" """, unsafe_allow_html=True) def display_metric(title, value, container=None): """ Display a metric in a nice formatted container Args: title (str): Title of the metric value (str/int/float): Value to display container (streamlit container, optional): Container to display the metric in """ target = container if container else st target.markdown(f"""