body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
  margin: 0;
  padding: 2rem;
}
.board-wrap {
  max-width: 320px;
  margin-bottom: 10px;
}

.board {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.property-card {
  background: #ffffff;
  color: #111827;
  border-radius: 0px;
}

.property-name {
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.property-lines {
  line-height: 1.5;
}

.property-header {
  color: black;
  font-weight: 700;
  text-align: center;
  font-size: 13px;
  padding: 8px;
}

.property-body {
  padding: 10px;
  line-height: 1.5;
  font-size: 11px;
}

.property-body .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.property-body .row span:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.property-divider {
  border-top: 1px dashed #d1d5db;
  margin: 6px 0;
}
