/* Stat card — shared across all dashboard list pages */
.mf-stat-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eef0f3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: box-shadow .2s ease, transform .2s ease;
}

.mf-stat-card--clickable {
  cursor: pointer;
}

.mf-stat-card--clickable:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
  transform: translateY(-2px);
}

.mf-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mf-stat-label {
  font-size: .74rem;
  color: #8a9098;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .15rem;
}

.mf-stat-value {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1e293b;
}
