import streamlit as st def set_custom_css(): """Set custom CSS for better styling""" custom_css = """ """ st.markdown(custom_css, unsafe_allow_html=True) def metric_card(label, value, description=None, color="#0068c9"): """Create a custom styled metric card""" html = f"""
Age: {profile_data['age']}
Gender: {profile_data['gender']}
BMI: {profile_data['bmi']}
A1C: {profile_data['a1c']}%
Comorbidities: {profile_data['comorbidities']}
Current Medications: {profile_data['medications']}