/* Statistics Dashboard - Minimal */

.stats-dashboard {
  background: #f9fafb;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #e5e7eb;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.stat-card {
  background: white;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: border-color 0.15s ease;
}

.stat-card:hover {
  border-color: #d1d5db;
}

.stat-card.stat-primary {
  border-color: #3b82f6;
}

.stat-card.stat-success {
  border-color: #10b981;
}

.stat-card.stat-info {
  border-color: #6366f1;
}

.stat-card.stat-warning {
  border-color: #f59e0b;
}

.stat-icon {
  font-size: 20px;
  margin-bottom: 4px;
  line-height: 1;
}

.stat-value {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.2;
  color: #1e293b;
}

.stat-card.stat-primary .stat-value {
  color: #3b82f6;
}

.stat-card.stat-success .stat-value {
  color: #10b981;
}

.stat-card.stat-info .stat-value {
  color: #6366f1;
}

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

.stat-label {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.stats-details {
  background: white;
  border-radius: 6px;
  padding: 12px;
  border: 1px solid #e5e7eb;
}

.stat-detail-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  gap: 8px;
}

.stat-detail-item:not(:last-child) {
  border-bottom: 1px solid #f1f5f9;
}

.stat-detail-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.stat-detail-label {
  color: #64748b;
  font-weight: 600;
  flex-shrink: 0;
}

.stat-detail-value {
  color: #1e293b;
  font-weight: 500;
  margin-left: auto;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-icon {
    font-size: 24px;
  }

  .stat-value {
    font-size: 22px;
  }

  .stat-label {
    font-size: 10px;
  }
}
