@import url('colors_and_type.css');

html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: var(--font-body);
  color: var(--color-text);
}
.card {
  padding: 20px 24px;
  box-sizing: border-box;
  min-height: 100%;
}
.row { display: flex; gap: 12px; align-items: center; }
.col { display: flex; flex-direction: column; gap: 8px; }
.label { font-size: 11px; color: var(--color-text-dim); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; color: var(--color-text-dim); }
