import streamlit as st from pathlib import Path def load_css(): css_path = Path(__file__).parent.parent / ".streamlit" / "style.css" if css_path.exists(): st.markdown(f"", unsafe_allow_html=True)