# utils/css.py """ Centralized CSS theming for the ECG Dashboard. Injects the complete light clinical theme stylesheet. """ import streamlit as st def inject_custom_css(): """Inject the full custom CSS theme into the Streamlit page.""" st.markdown(""" """, unsafe_allow_html=True)