StatsCard.module.css

 1.card {
 2  border-left: 4px solid #6366f1;
 3  border-radius: 12px;
 4  background: #1e1e2e;
 5  padding: 24px;
 6  display: flex;
 7  flex-direction: column;
 8  gap: 8px;
 9  box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
10  transition: width 0.3s ease;
11}
12
13.label {
14  font-size: 13px;
15  color: #9ca3af;
16  text-transform: uppercase;
17  letter-spacing: 0.08em;
18}
19
20.value {
21  font-size: 32px;
22  font-weight: 700;
23  font-family: 'Inter', sans-serif;
24}
25
26.changeUp {
27  color: #22c55e;
28  font-size: 14px;
29}
30
31.changeDown {
32  color: #ef4444;
33  font-size: 14px;
34}