"""Cross-browser light theme primitives shared by the PoC_4 Streamlit UIs. This module is presentation-only. It does not import or call runtime adapters, MCP clients, databases, retrieval code, or model providers. """ from __future__ import annotations POC4_LIGHT_THEME_CSS = """ """ def apply_poc4_light_theme(st: object, *, additional_css: str = "") -> None: """Inject optional layout CSS followed by the authoritative light theme.""" st.markdown( additional_css + POC4_LIGHT_THEME_CSS, unsafe_allow_html=True, ) __all__ = ["POC4_LIGHT_THEME_CSS", "apply_poc4_light_theme"]