body {
  padding: 40px;
  font: 15px "Lucida Grande", Helvetica, Arial, sans-serif;
  color: #1a232e;
  background: #f6f8fa;
}

a {
  color: #00B7FF;
}

h1 {
  margin: 0 0 12px;
}

.cat img {
  height: 90px;
}

/* One card per tier, each with its own color so the ids are unmistakable
   when tasks rotate behind the load balancer. */
.tiers {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  margin: 18px 0;
}

.tier {
  flex: 0 0 auto;
  padding: 14px 18px;
  border-radius: 10px;
  border-left: 6px solid;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(20, 30, 40, 0.12);
}

.tier-label {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.tier-value {
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}

.tier-web {
  border-color: #2f6fed;
}

.tier-web .tier-label,
.tier-web .tier-value {
  color: #2f6fed;
}

.tier-api {
  border-color: #ec7211;
}

.tier-api .tier-label,
.tier-api .tier-value {
  color: #ec7211;
}

.tier-db {
  border-color: #7d3ac1;
}

.tier-db .tier-label,
.tier-db .tier-value {
  color: #7d3ac1;
}

.hint {
  color: #6b7a8a;
  font-size: 13px;
}
