.dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card h5 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  color: #333;
}

.card p {
  font-size: 2rem;
  font-weight: bold;
  color: #0073e6;
}

@media (max-width: 600px) {
  .dashboard {
    grid-template-columns: 1fr;
  }
}
