.business-dashboard {
  --ff-accent: #16a34a;
  --ff-accent-soft: #dcfce7;
  --ff-border: #d7dee8;
  --ff-text: #111827;
  --ff-muted: #64748b;
}

.business-dashboard .dashboard-hero {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--ff-border);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 58%, #ecfdf5 100%);
}

.business-dashboard .dashboard-hero h1 {
  margin: 0;
  color: var(--ff-text);
  font-size: 28px;
  font-weight: 800;
}

.business-dashboard .dashboard-hero p {
  margin: 0;
  color: var(--ff-muted);
  font-size: 15px;
}

.business-dashboard .dashboard-card {
  height: 100%;
  padding: 20px;
  border: 1px solid var(--ff-border);
  border-radius: 8px;
  background: var(--bs-body-bg);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.business-dashboard .stat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
}

.business-dashboard .stat-card strong {
  display: block;
  color: var(--ff-text);
  font-size: 30px;
  line-height: 1;
}

.business-dashboard .stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--ff-muted);
  font-weight: 700;
}

.business-dashboard .stat-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--ff-accent-soft);
  color: var(--ff-accent);
  font-size: 24px;
}

.business-dashboard .quick-card {
  display: grid;
  gap: 14px;
}

.business-dashboard .quick-card h2 {
  margin: 0;
  color: var(--ff-text);
  font-size: 20px;
  font-weight: 800;
}

.business-dashboard .quick-card p {
  margin: 0;
  color: var(--ff-muted);
}

.business-dashboard .quick-card .btn {
  justify-self: start;
}

.business-dashboard .workflow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-dashboard .workflow-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--ff-border);
  border-radius: 8px;
  background: #fff;
}

.business-dashboard .workflow-list b {
  color: var(--ff-text);
}

.business-dashboard .workflow-list small {
  display: block;
  margin-top: 3px;
  color: var(--ff-muted);
}
