Nischal Subedi commited on
Commit
1896fde
·
1 Parent(s): 1d8fc5e
Files changed (1) hide show
  1. app.py +9 -9
app.py CHANGED
@@ -310,11 +310,11 @@ Answer:"""
310
  :root {
311
  --primary-color: #FF8C00; /* Darker Orange for buttons/accents */
312
  --primary-hover: #E07B00; /* Slightly darker orange for hover */
313
- --background-primary: #FFFFFF; /* Pure White for main cards, inputs, output area - NO GREY */
314
- --background-secondary: #FFFBF5; /* Very light, warm cream for overall app background, table headers, placeholder */
315
  --text-primary: #4A3C32; /* Dark warm brown/charcoal for main text */
316
  --text-secondary: #8C7B6F; /* Muted warm gray/brown for secondary text */
317
- --border-color: #DDC6AF; /* Light, desaturated orange-brown for borders */
318
  --border-focus: #FF8C00; /* Focus color matches primary */
319
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
320
  --shadow-md: 0 4px 10px rgba(0,0,0,0.1);
@@ -355,12 +355,12 @@ Answer:"""
355
  }
356
  /* Ensure all main content sections have primary background */
357
  .main-dashboard-container > * {
358
- background-color: var(--background-primary) !important;
359
  }
360
 
361
  /* Header styling - centered and prominent */
362
  .app-header-wrapper {
363
- background-color: var(--background-primary) !important; /* Solid primary background, removed gradient */
364
  border: 2px solid var(--border-color) !important;
365
  border-radius: 16px !important;
366
  padding: 2.5rem 1.5rem !important; /* More vertical padding */
@@ -378,15 +378,15 @@ Answer:"""
378
  left: 0;
379
  width: 100%;
380
  height: 100%;
381
- background: radial-gradient(circle at top left, rgba(255,140,0,0.15) 0%, transparent 50%), /* More vibrant orange tint */
382
- radial-gradient(circle at bottom right, rgba(255,140,0,0.15) 0%, transparent 50%);
383
  z-index: 0;
384
  opacity: 0.8;
385
  pointer-events: none;
386
  }
387
 
388
  .app-header-logo {
389
- font-size: 6.5rem !important; /* Significantly larger icon */
390
  margin-bottom: 0.75rem !important;
391
  display: block !important;
392
  color: var(--primary-color) !important; /* Theme color */
@@ -433,7 +433,7 @@ Answer:"""
433
  }
434
  /* Card sections with clear boundaries and subtle dynamic effects */
435
  .dashboard-card-section {
436
- background-color: var(--background-primary) !important; /* Explicitly set background */
437
  border: 2px solid var(--border-color) !important; /* Distinct border */
438
  border-radius: 12px !important;
439
  padding: 1.75rem !important; /* Consistent padding */
 
310
  :root {
311
  --primary-color: #FF8C00; /* Darker Orange for buttons/accents */
312
  --primary-hover: #E07B00; /* Slightly darker orange for hover */
313
+ --background-primary: hsl(30, 100%, 99.5%); /* Very bright, almost white, but distinctly warm cream */
314
+ --background-secondary: hsl(30, 100%, 97%); /* Slightly deeper, yet still very light, warm cream/peach */
315
  --text-primary: #4A3C32; /* Dark warm brown/charcoal for main text */
316
  --text-secondary: #8C7B6F; /* Muted warm gray/brown for secondary text */
317
+ --border-color: hsl(30, 70%, 88%); /* Light, warm orange-brown for borders */
318
  --border-focus: #FF8C00; /* Focus color matches primary */
319
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
320
  --shadow-md: 0 4px 10px rgba(0,0,0,0.1);
 
355
  }
356
  /* Ensure all main content sections have primary background */
357
  .main-dashboard-container > * {
358
+ /* Background will be set by .dashboard-card-section with a gradient */
359
  }
360
 
361
  /* Header styling - centered and prominent */
362
  .app-header-wrapper {
363
+ background: linear-gradient(145deg, var(--background-primary) 0%, var(--background-secondary) 100%) !important; /* Gradient background */
364
  border: 2px solid var(--border-color) !important;
365
  border-radius: 16px !important;
366
  padding: 2.5rem 1.5rem !important; /* More vertical padding */
 
378
  left: 0;
379
  width: 100%;
380
  height: 100%;
381
+ background: radial-gradient(circle at top left, rgba(255,140,0,0.2) 0%, transparent 60%), /* More vibrant orange tint */
382
+ radial-gradient(circle at bottom right, rgba(255,140,0,0.2) 0%, transparent 60%);
383
  z-index: 0;
384
  opacity: 0.8;
385
  pointer-events: none;
386
  }
387
 
388
  .app-header-logo {
389
+ font-size: 7rem !important; /* Significantly larger icon */
390
  margin-bottom: 0.75rem !important;
391
  display: block !important;
392
  color: var(--primary-color) !important; /* Theme color */
 
433
  }
434
  /* Card sections with clear boundaries and subtle dynamic effects */
435
  .dashboard-card-section {
436
+ background: linear-gradient(145deg, var(--background-primary) 0%, var(--background-secondary) 100%) !important; /* Gentle gradient */
437
  border: 2px solid var(--border-color) !important; /* Distinct border */
438
  border-radius: 12px !important;
439
  padding: 1.75rem !important; /* Consistent padding */