
.button:is(button) { border: 0; font: inherit; cursor: pointer; }
.button:disabled { cursor: not-allowed; opacity: .5; }
.workflow-shell { max-width: 900px; }
.workflow-card { display: grid; gap: 1rem; }
.workflow-step {
  display: grid;
  gap: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: 0 8px 24px rgba(25,53,47,.04);
}
.workflow-step h3 { font-size: 1.35rem; }
.muted { color: var(--muted); margin: 0; }
.workflow-actions { justify-content: flex-start; }
.profile { display: inline-flex; align-items: center; gap: .75rem; font-weight: 800; }
.profile img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.file-picker {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  padding: .7rem 1.1rem;
  border: 1px solid var(--forest);
  border-radius: 10px;
  color: var(--forest);
  font-weight: 750;
  cursor: pointer;
}
.file-picker:has(input:disabled) { cursor: not-allowed; opacity: .5; }
.file-picker input { position: absolute; inline-size: 1px; block-size: 1px; opacity: 0; }
.file-summary { padding: .85rem 1rem; border-radius: 10px; background: var(--leaf); font-weight: 700; overflow-wrap: anywhere; }
.approval { display: flex; align-items: flex-start; gap: .75rem; max-width: 720px; }
.approval input { width: 1.2rem; height: 1.2rem; margin-top: .2rem; accent-color: var(--forest); }
.progress-wrap { display: grid; gap: .5rem; }
.progress-wrap progress { width: 100%; height: 1rem; accent-color: var(--forest); }
.status { min-height: 1.65rem; margin: 0; font-weight: 700; color: var(--forest); }
.status[data-error="true"] { color: #9c2f1f; }
