body {
  font-family: Sentinel SSm A, Sentinel SSm B, serif;
  background: #fff;
  color: #4B2E83;
  margin: 20px;
}

h1 { text-align: center; margin-bottom: 40px; }
h2 {
    font-family: Kievit,sans-serif;
    font-weight: 900;
    font-style: "normal";
    font-variant-numeric: lining-nums;
    font-size: 36px;
    font-size: 1.5rem;
    letter-spacing: 1px;
    letter-spacing: .0625rem;
    line-height: 1.25;
    text-transform: uppercase;
    color: #c74a33;
    margin: 32px 0 16px
}
.pyramid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: auto;
  align-items: center;
}

.level { text-align: center; }

.level h2 { margin-bottom: 12px; }

.block-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.block {
  background: white;
  border-radius: 12px;
  padding: 6px 10px;
  font-size: 12px;
  text-align: center;
  border: 3px solid black;
  box-sizing: border-box;
}

.committed { border: 3px solid #2e7d32; }
.maybe-committed { border: 3px solid #ef6c00; }
.not-committed { border: 3px solid #c62828; }
.blank { border: 3px solid black; color: #666; font-size: 10px; }

.progress-container {
  width: 60%;
  border-radius: 12px;
  height: 16px;
  margin: 12px auto 0 auto;
  position: relative;
  display: flex;
  background: #eee;
  overflow: hidden;
}

.progress-label {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 0;
  left: 0;
  font-size: 10px;
  line-height: 16px;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 2px black;
}

@media print {
  body { margin: 20px; }
  .level { page-break-inside: avoid; }
}
