/* Customer portal extras — shared chrome lives in admin.css + brand.css */
.portal-body .lead {
  color: var(--muted);
  margin: -0.25rem 0 1.25rem;
  max-width: 40rem;
  line-height: 1.55;
}
.hint-foot {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}
.hint-foot a { color: var(--red); font-weight: 700; text-decoration: none; }
.hint-foot a:hover { text-decoration: underline; }

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin: 0 0 1.35rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.action-row .btn {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
}

.portal-job-head {
  align-items: center;
  margin-bottom: 1rem;
}
.portal-job-head h1 {
  margin: 0;
  letter-spacing: 0.02em;
}

.job-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid #eab308;
  color: #854d0e;
  background: #fef3c7;
  white-space: nowrap;
}
/* Waiting / submitted for review */
.job-status-draft,
.job-status-sent,
.job-status-pending-review {
  background: #fef3c7;
  border-color: #eab308;
  color: #854d0e;
}
/* Open / in progress */
.job-status-open,
.job-status-open-paid {
  background: #dcfce7;
  border-color: #22c55e;
  color: #14532d;
}
/* Complete but unpaid — needs collection */
.job-status-complete-unpaid {
  background: #ffedd5;
  border-color: #f97316;
  color: #9a3412;
}
/* Complete / closed */
.job-status-closed-paid,
.job-status-declined {
  background: #fecaca;
  border-color: #f87171;
  color: #9f1239;
}
.job-status-test {
  background: #dbeafe;
  border-color: #60a5fa;
  color: #1e40af;
}

.addr { max-width: 280px; font-size: 0.85rem; }
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
}
.line-list { margin: 0.5rem 0 0; padding-left: 1.1rem; }
.line-list li { margin: 0.25rem 0; }
.status-help {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}
.pay-card { margin-top: 0; }

/* Portal job-card pills inherit from admin.css status-* rules */

.portal-body .panel {
  border-top: 3px solid var(--navy);
}
.portal-body .panel + .panel {
  border-top-color: var(--red);
}
