/*
  Business Dashboard 預約與營運 Workspace — Foundation Pack CSS
  (BUSINESS-DASHBOARD-APPOINTMENT-FOUNDATION-001).

  Every rule is scoped under #appointmentWorkspaceHostRoot AND every class is aw-* prefixed (same
  double-containment convention businessCenter.css/revenueWorkspace.css already established) — a
  shared global stylesheet space means an unscoped rule risks silently affecting unrelated pages.
  Color/spacing values match businessCenter.css's own existing tokens verbatim (no new visual
  language introduced for this Foundation Pack).
*/
#appointmentWorkspaceHostRoot {
  --aw-space-2: 8px;
  --aw-space-3: 12px;
  --aw-space-4: 16px;
  --aw-space-5: 24px;
}

#appointmentWorkspaceHostRoot .aw-staff-load-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--aw-space-2);
}

#appointmentWorkspaceHostRoot .aw-staff-load-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--aw-space-3);
  padding: var(--aw-space-2) var(--aw-space-3);
  border-radius: 6px;
  background: var(--color-bg, #f9fafb);
}

#appointmentWorkspaceHostRoot .aw-staff-load-name {
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text, #1d2939);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#appointmentWorkspaceHostRoot .aw-staff-load-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text, #1d2939);
  white-space: nowrap;
}
