/* License key display: the key is a ~500-char JWT, so it needs a wrapping
   monospace block wide enough to read and a copy affordance next to it. */
.key-block {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--kraft);
  border-radius: 8px;
  padding: 12px;
  margin: 4px 0 12px;
  white-space: pre-wrap;
  word-break: break-all;
  overflow-wrap: anywhere;
  user-select: all;
}
.copied {
  color: var(--muted);
  font-size: 13px;
  min-height: 20px;
  margin-top: 8px;
}
.steps {
  text-align: left;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 20px 0 0;
  padding-left: 20px;
}
