
:root {
  --primary: #37474F;
  --secondary: #f1f3f4;
  --text-dark: #202124;
  --text-light: #5f6368;
  --bg: #fff;
  --border: #e0e0e0;
  --radius: 12px;
  --shadow: 0 2px 8px rgba(0,0,0,0.05);
  --accent: #1b2225;
  --green: #34a853;
}
/* Statistik-Boxen */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.2s ease;
}

.stat-card:hover {transform: translateY(-3px);}

.stat-title {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
}

/* Responsive */
@media (max-width: 800px) {
  
}