import streamlit as st def show_data(title, df): st.subheader(title) st.dataframe(df, use_container_width=True) def show_status(message="✅ All predictions complete."): st.success(message)