.demo-body {
  min-height: 100vh;
  background: #edf1f4;
}

.demo-body button,
.demo-body input,
.demo-body textarea {
  font: inherit;
}

.demo-notice {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 24px;
  background: var(--pru-ink);
  color: #c2cbd3;
  font-family: var(--pru-font-mono);
  font-size: 0.62rem;
  line-height: 1.45;
  text-align: center;
}

.demo-notice span {
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--pru-cobalt);
  color: var(--pru-white);
  text-transform: uppercase;
}

.demo-header {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 12px 28px;
  border-bottom: 1px solid var(--pru-grid);
  background: var(--pru-white);
}

.demo-brand {
  display: flex;
  min-height: 44px;
  align-items: center;
}

.demo-brand img {
  width: 148px;
  height: auto;
}

.demo-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.demo-header-label {
  padding-right: 16px;
  border-right: 1px solid var(--pru-grid);
  color: var(--pru-slate);
  font-size: 0.72rem;
}

.demo-reset,
.demo-exit {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 700;
}

.demo-reset {
  border: 1px solid var(--pru-grid);
  background: var(--pru-white);
  color: var(--pru-ink);
  cursor: pointer;
}

.demo-reset:hover {
  border-color: #9ca7b0;
}

.demo-exit {
  background: var(--pru-cobalt);
  color: var(--pru-white);
}

.demo-exit:hover {
  background: var(--pru-cobalt-dark);
}

.demo-shell {
  display: grid;
  width: min(calc(100% - 40px), 1440px);
  min-height: calc(100vh - 144px);
  grid-template-columns: 285px minmax(0, 1fr);
  margin: 20px auto;
  overflow: hidden;
  border: 1px solid #ccd4da;
  border-radius: 16px;
  background: var(--pru-white);
  box-shadow: 0 20px 55px rgb(13 23 33 / 8%);
}

.demo-static-note {
  margin: 22px clamp(28px, 5vw, 62px) 0;
  padding: 13px 15px;
  border: 1px solid #c7d1f8;
  border-radius: 8px;
  background: #f1f4ff;
  color: #455270;
  font-size: 0.72rem;
}

html.js-ready .demo-static-note {
  display: none;
}

html:not(.js-ready) .demo-reset,
html:not(.js-ready) .demo-step-nav,
html:not(.js-ready) .demo-workspace-footer {
  display: none;
}

.demo-rail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px 20px;
  background: var(--pru-ink);
  color: var(--pru-white);
}

.demo-case-meta {
  display: grid;
  padding: 0 10px 24px;
  border-bottom: 1px solid #354250;
  gap: 3px;
}

.demo-kicker {
  color: var(--pru-slate);
  font-family: var(--pru-font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 1.5;
}

.demo-case-meta .demo-kicker {
  color: #83909b;
}

.demo-case-meta strong {
  font-family: var(--pru-font-mono);
  font-size: 1.05rem;
  font-weight: 500;
}

.demo-case-meta small {
  color: #8995a0;
  font-size: 0.65rem;
}

.demo-step-nav {
  display: grid;
  margin-top: 22px;
  gap: 5px;
}

.demo-step-nav button {
  display: grid;
  min-height: 68px;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: #aeb8c1;
  cursor: pointer;
  text-align: left;
  transition:
    border-color var(--pru-duration-fast) ease,
    background-color var(--pru-duration-fast) ease,
    color var(--pru-duration-fast) ease;
}

.demo-step-nav button:hover {
  background: #172532;
  color: var(--pru-white);
}

.demo-step-nav button[aria-current="step"] {
  border-color: #3a4a59;
  background: #1a2937;
  color: var(--pru-white);
}

.demo-step-nav button > span:first-child {
  color: #71808d;
  font-family: var(--pru-font-mono);
  font-size: 0.62rem;
}

.demo-step-nav button[aria-current="step"] > span:first-child {
  color: #7e9aff;
}

.demo-step-nav button > span:last-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.demo-step-nav strong {
  font-size: 0.75rem;
  font-weight: 600;
}

.demo-step-nav small {
  overflow: hidden;
  color: #74818c;
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-rail-metrics {
  display: grid;
  margin-top: auto;
  padding: 22px 10px 0;
  border-top: 1px solid #354250;
  gap: 12px;
}

.demo-rail-metrics > span {
  color: #73808d;
  font-family: var(--pru-font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.04em;
}

.demo-rail-metrics > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.demo-rail-metrics small {
  color: #9ca7b1;
  font-size: 0.61rem;
}

.demo-rail-metrics strong {
  color: #dce5ff;
  font-family: var(--pru-font-mono);
  font-size: 0.7rem;
  font-weight: 500;
}

.demo-rail-metrics p {
  margin: 0;
  color: #6f7c87;
  font-size: 0.56rem;
  line-height: 1.5;
}

.demo-workspace {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #f9fafb;
}

.demo-workspace-header {
  display: flex;
  min-height: 133px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 28px clamp(28px, 5vw, 62px) 24px;
  background: var(--pru-white);
}

.demo-workspace-header > div {
  min-width: 0;
}

.demo-step-count {
  display: block;
  margin-bottom: 6px;
  color: var(--pru-cobalt);
  font-family: var(--pru-font-mono);
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.demo-workspace-header h1 {
  margin-bottom: 5px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.demo-workspace-header p {
  margin: 0;
  font-size: 0.8rem;
}

.demo-live-status {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 31px;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid #b8c6fa;
  border-radius: var(--pru-radius-pill);
  background: #eef2ff;
  color: var(--pru-cobalt-dark);
  font-family: var(--pru-font-mono);
  font-size: 0.58rem;
  font-weight: 500;
}

.demo-progress {
  height: 3px;
  background: #e5e9ed;
}

.demo-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--pru-cobalt);
  transition: width var(--pru-duration-slow) ease;
}

.demo-panels {
  flex: 1;
  padding: clamp(26px, 4vw, 48px) clamp(28px, 5vw, 62px);
}

.demo-step-panel {
  max-width: 980px;
  margin-inline: auto;
}

.demo-panel-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.demo-panel-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.2;
}

.demo-source {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid var(--pru-grid);
  border-radius: 6px;
  background: var(--pru-white);
  color: var(--pru-slate);
  font-family: var(--pru-font-mono);
  font-size: 0.54rem;
}

.demo-source-simulated {
  border-color: #dbc69e;
  background: #fff9eb;
  color: #81531d;
}

.demo-source-ready {
  border-color: #a9d4c6;
  background: #edf8f4;
  color: #126b4f;
}

.demo-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.demo-form-grid label {
  display: grid;
  gap: 7px;
  color: #55626d;
  font-size: 0.68rem;
  font-weight: 600;
}

.demo-form-grid input,
.demo-form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--pru-grid);
  border-radius: 8px;
  outline: 0;
  background: var(--pru-white);
  color: var(--pru-ink);
  font-size: 0.75rem;
  line-height: 1.5;
}

.demo-form-grid input:focus-visible,
.demo-form-grid textarea:focus-visible {
  outline: 3px solid var(--pru-cobalt);
  outline-offset: 3px;
}

.demo-form-grid textarea {
  min-height: 82px;
  resize: none;
}

.demo-field-wide {
  grid-column: 1 / -1;
}

.demo-info-callout {
  display: grid;
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 3px solid var(--pru-cobalt);
  border-radius: 0 8px 8px 0;
  background: #eef2ff;
  gap: 3px;
}

.demo-info-callout span {
  color: var(--pru-cobalt-dark);
  font-family: var(--pru-font-mono);
  font-size: 0.56rem;
  font-weight: 500;
  text-transform: uppercase;
}

.demo-info-callout p {
  margin: 0;
  color: #4a5771;
  font-size: 0.7rem;
}

.demo-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.demo-plan-card {
  padding: 20px;
  border: 1px solid var(--pru-grid);
  border-radius: 10px;
  background: var(--pru-white);
}

.demo-plan-card-wide {
  grid-column: 1 / -1;
}

.demo-plan-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--pru-grid);
}

.demo-plan-card > header span {
  color: var(--pru-slate);
  font-family: var(--pru-font-mono);
  font-size: 0.57rem;
}

.demo-plan-card > header strong {
  color: var(--pru-success);
  font-family: var(--pru-font-mono);
  font-size: 0.58rem;
  font-weight: 500;
}

.demo-line-item,
.demo-plan-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 7px;
  color: #53606b;
  font-size: 0.7rem;
}

.demo-line-item strong,
.demo-plan-total strong {
  color: var(--pru-ink);
  font-family: var(--pru-font-mono);
  font-size: 0.68rem;
  font-weight: 500;
}

.demo-plan-total {
  margin-top: 5px;
  padding-top: 13px;
  border-top: 1px solid var(--pru-grid);
  font-weight: 700;
}

.demo-plan-card > small {
  display: block;
  margin-top: 9px;
  color: #88939c;
  font-size: 0.56rem;
}

.demo-plan-value {
  display: block;
  margin-top: 15px;
  font-family: var(--pru-font-mono);
  font-size: 1rem;
  font-weight: 500;
}

.demo-plan-card > p {
  margin: 4px 0 0;
  font-size: 0.67rem;
}

.demo-message-card {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 15px;
  border-color: #c5d1fc;
  background: #f3f6ff;
}

.demo-message-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--pru-cobalt);
  color: var(--pru-white);
}

.demo-message-card > div {
  display: grid;
  gap: 2px;
}

.demo-message-card > div strong {
  font-size: 0.74rem;
}

.demo-message-card > div p {
  margin: 0;
  font-size: 0.63rem;
}

.demo-message-card > span:last-child {
  color: var(--pru-cobalt-dark);
  font-family: var(--pru-font-mono);
  font-size: 0.54rem;
}

.demo-execution-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: 16px;
}

.demo-checklist {
  overflow: hidden;
  border: 1px solid var(--pru-grid);
  border-radius: 10px;
  background: var(--pru-white);
}

.demo-checklist label {
  display: grid;
  min-height: 74px;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  cursor: pointer;
}

.demo-checklist label:not(:last-child) {
  border-bottom: 1px solid var(--pru-grid);
}

.demo-checklist input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--pru-cobalt);
}

.demo-checklist label > span {
  display: grid;
  gap: 3px;
}

.demo-checklist strong {
  color: var(--pru-ink);
  font-size: 0.7rem;
  font-weight: 600;
}

.demo-checklist small {
  color: var(--pru-slate);
  font-size: 0.61rem;
}

.demo-evidence {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--pru-grid);
  border-radius: 10px;
  background: var(--pru-white);
}

.demo-evidence-placeholder {
  display: grid;
  min-height: 174px;
  place-items: center;
  align-content: center;
  margin-block: 14px;
  padding: 20px;
  border: 1px dashed #b9c3cb;
  border-radius: 8px;
  text-align: center;
}

.demo-evidence-placeholder > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 9px;
  border-radius: 50%;
  background: var(--pru-calibration);
  color: var(--pru-cobalt-dark);
  font-family: var(--pru-font-mono);
}

.demo-evidence-placeholder strong {
  font-size: 0.65rem;
}

.demo-evidence-placeholder p {
  margin: 2px 0 0;
  font-size: 0.57rem;
}

.demo-evidence-added {
  margin-block: 14px;
}

.demo-evidence-added > div {
  position: relative;
  display: grid;
  height: 128px;
  align-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #e7edf0;
  gap: 8px;
}

.demo-evidence-added > div::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 43px;
  background: #cad5da;
  content: "";
}

.demo-evidence-added > div span {
  z-index: 1;
  width: 42%;
  height: 7px;
  margin-left: 18px;
  border-radius: 4px;
  background: #81919a;
}

.demo-evidence-added > div span:nth-child(2) {
  width: 65%;
  background: var(--pru-cobalt);
}

.demo-evidence-added > div span:nth-child(3) {
  width: 51%;
}

.demo-evidence-added strong,
.demo-evidence-added small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-evidence-added strong {
  margin-top: 8px;
  font-size: 0.62rem;
}

.demo-evidence-added small {
  color: var(--pru-slate);
  font-size: 0.55rem;
}

.demo-evidence-button {
  min-height: 44px;
  margin-top: auto;
  padding: 9px 11px;
  border: 1px solid var(--pru-grid);
  border-radius: 7px;
  background: var(--pru-white);
  color: var(--pru-ink);
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 700;
}

.demo-evidence-button:hover {
  border-color: var(--pru-cobalt);
  color: var(--pru-cobalt-dark);
}

.demo-report {
  overflow: hidden;
  border: 1px solid var(--pru-grid);
  border-radius: 10px;
  background: var(--pru-white);
  box-shadow: 0 10px 28px rgb(13 23 33 / 5%);
}

.demo-report > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--pru-grid);
}

.demo-report > header img {
  width: 130px;
  height: auto;
}

.demo-report > header > div {
  display: grid;
  justify-items: end;
  gap: 3px;
}

.demo-report > header span,
.demo-report > header strong {
  font-family: var(--pru-font-mono);
  font-size: 0.57rem;
}

.demo-report > header span {
  color: var(--pru-slate);
}

.demo-report > header strong {
  font-weight: 500;
}

.demo-report-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--pru-grid);
}

.demo-report-summary > div {
  display: grid;
  min-width: 0;
  gap: 4px;
  padding: 16px;
}

.demo-report-summary > div:not(:last-child) {
  border-right: 1px solid var(--pru-grid);
}

.demo-report-summary small {
  color: var(--pru-slate);
  font-size: 0.57rem;
}

.demo-report-summary strong {
  overflow: hidden;
  font-size: 0.67rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-report-body {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  padding: 24px;
}

.demo-report-body > div {
  display: grid;
  gap: 7px;
}

.demo-report-body p {
  margin: 0;
  color: #4e5b66;
  font-size: 0.68rem;
}

.demo-report > footer {
  padding: 12px 24px;
  background: #f2f4f6;
  color: var(--pru-slate);
  font-family: var(--pru-font-mono);
  font-size: 0.53rem;
}

.demo-report-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
}

.demo-report-actions button {
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--pru-grid);
  border-radius: 7px;
  background: var(--pru-white);
  color: var(--pru-ink);
  cursor: pointer;
  font-size: 0.63rem;
  font-weight: 700;
}

.demo-report-actions span {
  color: var(--pru-slate);
  font-size: 0.58rem;
}

.demo-workspace-footer {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(28px, 5vw, 62px);
  border-top: 1px solid var(--pru-grid);
  background: var(--pru-white);
}

.demo-workspace-footer button {
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 700;
}

.demo-previous {
  border: 1px solid var(--pru-grid);
  background: var(--pru-white);
  color: var(--pru-ink);
}

.demo-previous:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.demo-next {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--pru-cobalt);
  background: var(--pru-cobalt);
  color: var(--pru-white);
}

.demo-next:hover {
  border-color: var(--pru-cobalt-dark);
  background: var(--pru-cobalt-dark);
}

.demo-workspace-footer p {
  margin: 0;
  color: #7b8791;
  font-size: 0.6rem;
  text-align: center;
}

.demo-toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  max-width: 340px;
  padding: 13px 16px;
  border-radius: 9px;
  background: var(--pru-ink);
  box-shadow: 0 14px 36px rgb(13 23 33 / 20%);
  color: var(--pru-white);
  font-size: 0.7rem;
}

@media (max-width: 980px) {
  .demo-header-label {
    display: none;
  }

  .demo-shell {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .demo-execution-grid {
    grid-template-columns: 1fr;
  }

  .demo-evidence {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .demo-notice {
    display: grid;
    justify-items: center;
    gap: 4px;
    padding: 8px 20px;
  }

  .demo-header {
    min-height: 64px;
    padding-inline: 20px;
  }

  .demo-brand img {
    width: 130px;
  }

  .demo-reset {
    display: none;
  }

  .demo-exit {
    min-height: 42px;
    padding-inline: 12px;
  }

  .demo-shell {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .demo-rail {
    padding: 18px 20px;
  }

  .demo-case-meta {
    display: none;
  }

  .demo-step-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0;
    gap: 5px;
  }

  .demo-step-nav button {
    min-height: 57px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3px;
    padding: 7px 3px;
    text-align: center;
  }

  .demo-step-nav button > span:first-child {
    font-size: 0.55rem;
  }

  .demo-step-nav strong {
    font-size: 0.57rem;
  }

  .demo-step-nav small {
    display: none;
  }

  .demo-rail-metrics {
    display: none;
  }

  .demo-workspace-header {
    min-height: 126px;
    align-items: flex-start;
    padding: 24px;
  }

  .demo-workspace-header h1 {
    font-size: 1.45rem;
  }

  .demo-workspace-header p {
    font-size: 0.88rem;
  }

  .demo-live-status {
    margin-top: 4px;
  }

  .demo-panels {
    padding: 30px 24px;
  }

  .demo-panel-heading {
    align-items: flex-start;
  }

  .demo-source {
    max-width: 135px;
    text-align: right;
  }

  .demo-form-grid {
    grid-template-columns: 1fr;
  }

  .demo-form-grid label {
    font-size: 0.78rem;
  }

  .demo-form-grid input,
  .demo-form-grid textarea {
    font-size: 0.88rem;
  }

  .demo-field-wide {
    grid-column: auto;
  }

  .demo-plan-grid {
    grid-template-columns: 1fr;
  }

  .demo-plan-card-wide {
    grid-column: auto;
  }

  .demo-message-card {
    grid-template-columns: 36px 1fr;
  }

  .demo-message-card > span:last-child {
    grid-column: 2;
  }

  .demo-info-callout p,
  .demo-plan-card > p,
  .demo-message-card > div p,
  .demo-checklist strong,
  .demo-report-body p {
    font-size: 0.78rem;
  }

  .demo-checklist small {
    font-size: 0.7rem;
  }

  .demo-report-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-report-summary > div:nth-child(2) {
    border-right: 0;
  }

  .demo-report-summary > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--pru-grid);
  }

  .demo-report-body {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .demo-report-actions {
    display: grid;
  }

  .demo-workspace-footer {
    position: sticky;
    z-index: 20;
    bottom: 0;
    grid-template-columns: auto 1fr;
    gap: 8px;
    padding: 12px 16px;
    box-shadow: 0 -8px 24px rgb(13 23 33 / 7%);
  }

  .demo-workspace-footer p {
    display: none;
  }

  .demo-workspace-footer button {
    min-height: 48px;
  }

  .demo-next {
    justify-content: center;
  }

  .demo-toast {
    right: 16px;
    bottom: 78px;
    left: 16px;
    max-width: none;
  }
}

@media (max-width: 430px) {
  .demo-workspace-header {
    display: grid;
    gap: 14px;
  }

  .demo-live-status {
    justify-self: start;
  }

  .demo-panel-heading {
    display: grid;
    gap: 12px;
  }

  .demo-source {
    max-width: none;
    justify-self: start;
    text-align: left;
  }

  .demo-report > header {
    align-items: flex-start;
  }

  .demo-report > header img {
    width: 112px;
  }

  .demo-report > header > div {
    text-align: right;
  }

  .demo-previous {
    width: 48px;
    overflow: hidden;
    color: transparent;
  }

  .demo-previous::before {
    color: var(--pru-ink);
    content: "←";
  }
}

@media print {
  .demo-notice,
  .demo-header,
  .demo-rail,
  .demo-workspace-header,
  .demo-progress,
  .demo-panel-heading,
  .demo-workspace-footer,
  .demo-report-actions,
  .demo-toast {
    display: none !important;
  }

  .demo-body,
  .demo-workspace,
  .demo-panels {
    background: #fff;
  }

  .demo-shell {
    display: block;
    width: 100%;
    min-height: 0;
    margin: 0;
    border: 0;
    box-shadow: none;
  }

  .demo-step-panel {
    display: none !important;
  }

  .demo-step-panel[data-step-panel="3"] {
    display: block !important;
  }

  .demo-panels {
    padding: 0;
  }

  .demo-report {
    border: 1px solid #999;
    box-shadow: none;
  }
}
