/* ============================================
   Stat Displays Component
   Statistical number displays
   ============================================ */

/* Stat displays container */
.stat-displays {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

/* Individual stat display */
.stat-display {
  text-align: center;
}

/* Stat number value */
.stat-number-value {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

/* Stat number label */
.stat-number-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Large stat display */
.stat-display-large .stat-number-value {
  font-size: 3rem;
}

.stat-display-large .stat-number-label {
  font-size: 1rem;
}

/* Small stat display */
.stat-display-small .stat-number-value {
  font-size: 1.5rem;
}

.stat-display-small .stat-number-label {
  font-size: 0.75rem;
}

/* Stat with icon */
.stat-display-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
}

/* Colored stat variants */
.stat-display.stat-success .stat-number-value {
  color: #22c55e;
}

.stat-display.stat-warning .stat-number-value {
  color: #f59e0b;
}

.stat-display.stat-info .stat-number-value {
  color: #3b82f6;
}

.stat-display.stat-danger .stat-number-value {
  color: #ef4444;
}