klydekushy commited on
Commit
c26e8d5
·
verified ·
1 Parent(s): c50857c

Update src/modules/forecasting.py

Browse files
Files changed (1) hide show
  1. src/modules/forecasting.py +8 -12
src/modules/forecasting.py CHANGED
@@ -71,22 +71,18 @@ def apply_forecasting_styles():
71
  font-size: 0.9rem !important;
72
  }
73
 
74
- /* Carte de prédiction style Gotham - MONOCHROME BLEU */
75
  .forecast-card {
76
- background: linear-gradient(135deg, rgba(22, 27, 34, 0.95) 0%, rgba(13, 17, 23, 0.95) 100%);
77
- border: 1px solid rgba(88, 166, 255, 0.4);
78
- border-radius: 8px;
79
- padding: 20px;
80
- margin: 16px 0;
81
- transition: all 0.3s ease;
82
- position: relative;
83
- overflow: hidden;
84
  }
85
 
86
  .forecast-card:hover {
87
- border-color: rgba(88, 166, 255, 0.7);
88
- transform: translateY(-2px);
89
- box-shadow: 0 8px 20px rgba(88, 166, 255, 0.15);
90
  }
91
 
92
  .forecast-card::before {
 
71
  font-size: 0.9rem !important;
72
  }
73
 
74
+ /* Carte de prédiction style Palantir - MINIMALISTE */
75
  .forecast-card {
76
+ background: rgba(22, 27, 34, 0.4);
77
+ border: 1px solid rgba(88, 166, 255, 0.2);
78
+ border-radius: 4px;
79
+ padding: 16px;
80
+ margin: 12px 0;
81
+ transition: border-color 0.2s ease;
 
 
82
  }
83
 
84
  .forecast-card:hover {
85
+ border-color: rgba(88, 166, 255, 0.4);
 
 
86
  }
87
 
88
  .forecast-card::before {