/* =============================================================================
   assets/css/dashboard.css
   -----------------------------------------------------------------------------
   The small stat tiles and chart card used on the admin dashboard and the
   "Catalogue at a Glance" chart on the home page.
   ============================================================================= */

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

.dash-card {
  padding: 1.3rem 1.4rem;
}

.dash-card .value {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-primary);
}

.dash-card .label {
  color: var(--color-text-muted);
  font-size: .85rem;
}

.chart-card {
  padding: 1.6rem;
}

/* Extra breathing room under a chart card when something follows it. */
.chart-card-spaced {
  margin-bottom: 2rem;
}
