# utils/styling.py import streamlit as st def apply_custom_css(): """Apply custom CSS styling""" st.markdown(""" """, unsafe_allow_html=True) def create_metric_card(value, label, icon="📊", color="#1f77b4"): """Create a styled metric card""" return f"""
{value}
{label}
{icon}
""" COLORS = { 'primary': '#1f77b4', 'secondary': '#ff7f0e', 'success': '#2ca02c', 'danger': '#d62728', 'warning': '#ffbb78' }