Ali2206 commited on
Commit
e63e1d7
·
verified ·
1 Parent(s): b929a03

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -14
app.py CHANGED
@@ -216,37 +216,39 @@ def create_ui(agent):
216
  html, body, .gradio-container {
217
  height: 100vh;
218
  width: 100vw;
219
- padding: 0;
220
  margin: 0;
 
221
  font-family: 'Inter', sans-serif;
222
- background: #ffffff;
 
223
  }
224
  .gr-button.primary {
225
- background: #1e88e5;
226
- color: #fff;
227
- border: none;
228
  border-radius: 6px;
 
229
  font-weight: 600;
230
  }
231
  .gr-button.primary:hover {
232
- background: #1565c0;
233
  }
234
  .gr-chatbot {
235
- border: 1px solid #e0e0e0;
236
- background: #f9f9f9;
237
  border-radius: 10px;
238
  padding: 1rem;
239
- font-size: 15px;
240
  }
241
  .gr-markdown, .gr-file-upload {
242
- background: #ffffff;
243
- border-radius: 8px;
244
- box-shadow: 0 1px 3px rgba(0,0,0,0.08);
 
245
  }
246
  """) as demo:
247
  gr.Markdown("""
248
- <h2 style='color:#1e88e5'>🩺 Patient History AI Assistant</h2>
249
- <p>Upload a clinical Excel file and receive an advanced diagnostic summary.</p>
250
  """)
251
 
252
  with gr.Row():
 
216
  html, body, .gradio-container {
217
  height: 100vh;
218
  width: 100vw;
 
219
  margin: 0;
220
+ padding: 0;
221
  font-family: 'Inter', sans-serif;
222
+ background-color: #111827;
223
+ color: #e5e7eb;
224
  }
225
  .gr-button.primary {
226
+ background: #2563eb;
227
+ color: white;
 
228
  border-radius: 6px;
229
+ border: none;
230
  font-weight: 600;
231
  }
232
  .gr-button.primary:hover {
233
+ background: #1e40af;
234
  }
235
  .gr-chatbot {
236
+ background-color: #1f2937;
237
+ color: #e5e7eb;
238
  border-radius: 10px;
239
  padding: 1rem;
240
+ border: 1px solid #374151;
241
  }
242
  .gr-markdown, .gr-file-upload {
243
+ background-color: #1f2937;
244
+ border-radius: 10px;
245
+ box-shadow: 0 0 10px rgba(0,0,0,0.2);
246
+ border: 1px solid #374151;
247
  }
248
  """) as demo:
249
  gr.Markdown("""
250
+ <h2 style='color:#60a5fa'>🩺 Patient History AI Assistant</h2>
251
+ <p style='color:#cbd5e1'>Upload a clinical Excel file and receive a structured diagnostic summary.</p>
252
  """)
253
 
254
  with gr.Row():