import streamlit as st
def apply_custom_css():
"""Apply custom CSS to fix UI issues on Huggingface Spaces"""
st.markdown("""
""", unsafe_allow_html=True)
def apply_custom_js():
"""Apply custom JavaScript to fix UI issues on Huggingface Spaces"""
st.markdown("""
""", unsafe_allow_html=True)
def init():
"""Initialize custom CSS and JS"""
apply_custom_css()
apply_custom_js()