:root {
  --plate-surface-a: #f8fbff;
  --plate-surface-b: #dbe5f3;
  --plate-border: #b8c4d8;
}

body {
  background:
    radial-gradient(1200px 700px at 5% -10%, rgba(31, 94, 255, 0.2), transparent 60%),
    radial-gradient(900px 500px at 95% 0%, rgba(199, 99, 27, 0.18), transparent 60%),
    #eff4fb;
}

.digital-twin-plate {
  background: linear-gradient(135deg, var(--plate-surface-a) 0%, var(--plate-surface-b) 100%);
  border: 5px solid var(--plate-border);
  box-shadow: inset 0 0 30px rgba(10, 18, 36, 0.06), 0 12px 35px rgba(17, 31, 68, 0.12);
}

.field-label {
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  color: #68738a;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.field-value {
  font-size: 1rem;
  font-weight: 700;
  min-height: 1.4em;
  word-break: break-word;
}

#statusText {
  transition: color 220ms ease;
}

.parsing #parseButton {
  position: relative;
  pointer-events: none;
}

.parsing #parseButton::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: #ffffff;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
