""" This module contains the custom styling for the Daease app. """ def get_custom_css(): """ Returns the custom CSS for styling the application with a pitch black theme and modern UI. """ return """ """ def apply_styling(): """ Apply the custom CSS styling to the Streamlit app. """ import streamlit as st st.markdown(get_custom_css(), unsafe_allow_html=True)