/* Stats Cards Styling */
.stats-card {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #e5e7eb;
}

.stats-card h4 {
  margin-bottom: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
}

.stats-card p {
  margin: 0;
  font-weight: bold;
  font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stats-card {
    padding: 0.75rem;
  }

  .stats-card p {
    font-size: 1.25rem;
  }
}
