|
1 | 1 | /* Dashboard Layout */ |
2 | 2 | .dashboard { |
3 | 3 | min-height: 100vh; |
4 | | - background-color: #f8fafc; |
5 | | - color: #1a202c; |
| 4 | + background: #ffffff; |
| 5 | + color: #000000; |
6 | 6 | } |
7 | 7 |
|
8 | 8 | .dashboard-header { |
9 | | - background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); |
| 9 | + background: #000000; |
| 10 | + border-bottom: 1px solid #e5e5e5; |
10 | 11 | color: white; |
11 | | - padding: 2rem; |
12 | | - box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); |
| 12 | + padding: 1rem 2rem; |
| 13 | + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); |
13 | 14 | } |
14 | 15 |
|
| 16 | + |
| 17 | + |
15 | 18 | .header-content { |
16 | 19 | max-width: 1200px; |
17 | 20 | margin: 0 auto; |
| 21 | + display: flex; |
| 22 | + align-items: center; |
| 23 | + justify-content: space-between; |
18 | 24 | } |
19 | 25 |
|
20 | 26 | .logo { |
21 | 27 | display: flex; |
22 | 28 | align-items: center; |
23 | 29 | gap: 0.75rem; |
24 | | - margin-bottom: 0.5rem; |
25 | 30 | } |
26 | 31 |
|
27 | 32 | .logo h1 { |
28 | 33 | margin: 0; |
29 | | - font-size: 2rem; |
| 34 | + font-size: 1.5rem; |
30 | 35 | font-weight: 700; |
| 36 | + color: white; |
| 37 | + letter-spacing: -0.025em; |
31 | 38 | } |
32 | 39 |
|
33 | | -.header-content p { |
| 40 | +.header-subtitle { |
34 | 41 | margin: 0; |
35 | | - opacity: 0.9; |
36 | | - font-size: 1.1rem; |
| 42 | + opacity: 0.85; |
| 43 | + font-size: 0.875rem; |
| 44 | + font-weight: 500; |
| 45 | + color: #cccccc; |
| 46 | + display: none; |
| 47 | + letter-spacing: 0.025em; |
| 48 | +} |
| 49 | + |
| 50 | +@media (min-width: 768px) { |
| 51 | + .header-subtitle { |
| 52 | + display: block; |
| 53 | + } |
| 54 | + |
| 55 | + .header-content { |
| 56 | + justify-content: flex-start; |
| 57 | + gap: 2rem; |
| 58 | + } |
| 59 | + |
| 60 | + .logo h1 { |
| 61 | + font-size: 1.75rem; |
| 62 | + } |
37 | 63 | } |
38 | 64 |
|
39 | 65 | /* Navigation */ |
40 | 66 | .dashboard-nav { |
41 | 67 | background: white; |
42 | | - padding: 1rem 2rem; |
43 | | - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1); |
| 68 | + border: 1px solid #e5e5e5; |
| 69 | + padding: 1.25rem 2rem; |
| 70 | + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); |
44 | 71 | display: flex; |
45 | 72 | gap: 1rem; |
46 | 73 | max-width: 1200px; |
47 | 74 | margin: 0 auto; |
48 | 75 | } |
49 | 76 |
|
| 77 | + |
| 78 | + |
50 | 79 | .nav-button { |
51 | 80 | display: flex; |
52 | 81 | align-items: center; |
53 | | - gap: 0.5rem; |
54 | | - padding: 0.75rem 1.5rem; |
55 | | - border: none; |
56 | | - background: transparent; |
| 82 | + gap: 0.625rem; |
| 83 | + padding: 1rem 2rem; |
| 84 | + border: 1px solid #d1d5db; |
| 85 | + background: white; |
57 | 86 | border-radius: 0.5rem; |
58 | 87 | cursor: pointer; |
59 | | - font-weight: 500; |
60 | | - transition: all 0.2s; |
61 | | - color: #64748b; |
| 88 | + font-weight: 600; |
| 89 | + font-size: 0.95rem; |
| 90 | + transition: all 0.2s ease; |
| 91 | + color: #374151; |
| 92 | + text-transform: capitalize; |
| 93 | + letter-spacing: -0.025em; |
62 | 94 | } |
63 | 95 |
|
| 96 | + |
| 97 | + |
64 | 98 | .nav-button:hover { |
65 | | - background-color: #f1f5f9; |
66 | | - color: #334155; |
| 99 | + background: #f9fafb; |
| 100 | + border-color: #6b7280; |
| 101 | + color: #111827; |
| 102 | + transform: translateY(-1px); |
| 103 | + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); |
67 | 104 | } |
68 | 105 |
|
69 | 106 | .nav-button.active { |
70 | | - background-color: #3b82f6; |
| 107 | + background: #000000; |
| 108 | + border-color: #000000; |
71 | 109 | color: white; |
| 110 | + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); |
| 111 | +} |
| 112 | + |
| 113 | +.nav-button.active::before { |
| 114 | + background: linear-gradient(90deg, |
| 115 | + transparent, |
| 116 | + rgba(255, 255, 255, 0.2), |
| 117 | + transparent); |
72 | 118 | } |
73 | 119 |
|
74 | 120 | /* Main Content */ |
|
81 | 127 | gap: 2rem; |
82 | 128 | } |
83 | 129 |
|
| 130 | +/* Chart Container */ |
84 | 131 | .chart-container { |
85 | 132 | background: white; |
| 133 | + border: 1px solid #e5e5e5; |
86 | 134 | padding: 2rem; |
87 | | - border-radius: 0.75rem; |
88 | | - box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); |
| 135 | + border-radius: 0.5rem; |
| 136 | + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); |
89 | 137 | } |
90 | 138 |
|
| 139 | + |
| 140 | + |
91 | 141 | .chart-container h2 { |
92 | 142 | margin: 0 0 1.5rem 0; |
93 | | - color: #1a202c; |
| 143 | + color: #111827; |
94 | 144 | font-size: 1.5rem; |
95 | 145 | font-weight: 600; |
| 146 | + letter-spacing: -0.025em; |
96 | 147 | } |
97 | 148 |
|
98 | 149 | /* Stats Grid */ |
|
104 | 155 |
|
105 | 156 | .stat-card { |
106 | 157 | background: white; |
107 | | - padding: 1.5rem; |
108 | | - border-radius: 0.75rem; |
109 | | - box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); |
110 | | - border-left: 4px solid #3b82f6; |
| 158 | + border: 1px solid #e5e5e5; |
| 159 | + padding: 1.75rem; |
| 160 | + border-radius: 0.5rem; |
| 161 | + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); |
| 162 | + border-left: 4px solid #000000; |
| 163 | + transition: all 0.2s ease; |
| 164 | +} |
| 165 | + |
| 166 | + |
| 167 | + |
| 168 | +.stat-card:hover { |
| 169 | + transform: translateY(-2px); |
| 170 | + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); |
111 | 171 | } |
112 | 172 |
|
113 | 173 | .stat-card h3 { |
114 | | - margin: 0 0 0.5rem 0; |
115 | | - color: #64748b; |
| 174 | + margin: 0 0 0.75rem 0; |
| 175 | + color: #6b7280; |
116 | 176 | font-size: 0.875rem; |
117 | | - font-weight: 500; |
| 177 | + font-weight: 600; |
118 | 178 | text-transform: uppercase; |
119 | | - letter-spacing: 0.05em; |
| 179 | + letter-spacing: 0.1em; |
120 | 180 | } |
121 | 181 |
|
122 | 182 | .stat-value { |
123 | | - margin: 0 0 0.5rem 0; |
124 | | - font-size: 2rem; |
| 183 | + margin: 0 0 0.75rem 0; |
| 184 | + font-size: 2.25rem; |
125 | 185 | font-weight: 700; |
126 | | - color: #1a202c; |
| 186 | + color: #111827; |
| 187 | + letter-spacing: -0.025em; |
| 188 | + line-height: 1.1; |
127 | 189 | } |
128 | 190 |
|
129 | 191 | .stat-change { |
130 | 192 | font-size: 0.875rem; |
131 | | - font-weight: 500; |
132 | | - padding: 0.25rem 0.5rem; |
133 | | - border-radius: 0.25rem; |
| 193 | + font-weight: 600; |
| 194 | + padding: 0.375rem 0.75rem; |
| 195 | + border-radius: 0.5rem; |
| 196 | + display: inline-flex; |
| 197 | + align-items: center; |
| 198 | + gap: 0.25rem; |
134 | 199 | } |
135 | 200 |
|
136 | 201 | .stat-change.positive { |
137 | 202 | color: #059669; |
138 | | - background-color: #d1fae5; |
| 203 | + background: rgba(16, 185, 129, 0.1); |
| 204 | + border: 1px solid rgba(16, 185, 129, 0.2); |
139 | 205 | } |
140 | 206 |
|
141 | 207 | .stat-change.negative { |
142 | 208 | color: #dc2626; |
143 | | - background-color: #fee2e2; |
| 209 | + background: rgba(220, 38, 38, 0.1); |
| 210 | + border: 1px solid rgba(220, 38, 38, 0.2); |
144 | 211 | } |
145 | 212 |
|
146 | 213 | /* Responsive Design */ |
|
0 commit comments