# --- WITHIN YOUR GRADIO UI SETUP --- with gr.Column(scale=1): gr.Markdown("### 1. Cash Flow") inc = gr.Number(label="Annual Gross Income ($)", value=180000) rnt = gr.Number(label="Monthly Rent ($)", value=3100) # Fixed closing parenthesis bls = gr.Number(label="Monthly Bills ($)", value=800) life = gr.Number(label="Lifestyle Spend / Paycheck ($)", value=1200) gr.Markdown("### 2. Debt Priority") db_b = gr.Number(label="Current Balance ($)", value=14000) db_r = gr.Number(label="Interest Rate (%)", value=21) submit_btn = gr.Button("Generate My Roadmap", variant="primary")