"""This is the main entry point for the application. For Hugging Face Spaces compatibility, this file must remain at the root. """ import gradio as gr from src.ui import create_ui demo = create_ui() if __name__ == "__main__": demo.launch( ssr_mode=False, theme=gr.themes.Soft( primary_hue="orange", secondary_hue="slate", ), css=""" .main-header { text-align: center; margin-bottom: 0.25rem; } .main-header h1 { margin-bottom: 0.25rem; } .main-header p { margin-bottom: 0; } .status-box { min-height: 80px; } .action-btn { min-height: 45px; } .login-message { padding: 0.5rem; } """ )