/* Layout + vibe */
body {
  font-family: Georgia, serif;
  background: #f4f7fb;
}

/* Pico container is already centered; this just adds breathing room */
.container {
  max-width: 860px;
  padding-top: 32px;
  padding-bottom: 48px;
}

.hero {
  text-align: center;
  margin-bottom: 16px;
}

.subtitle {
  color: #555;
  font-size: 0.95rem;
  margin-top: 6px;
  margin-bottom: 14px;
}

.chartControls {
  display: flex;
  justify-content: center;
  margin: 10px 0 14px;
}

.card {
  background: white;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin: 16px auto;
}

#view {
  max-width: 700px;
  margin: 0 auto;
}

/* Form */
#snowForm label {
  display: block;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.hint {
  color: #666;
  font-size: 0.9rem;
  font-weight: 400;
}

.btnRow {
  margin: 12px 0 6px;
}

/* Totals */
.muted {
  color: #666;
  font-size: 0.9rem;
}

.sumRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0 6px;
}

/* Sliders */
.sliderGrid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.sliderRow {
  display: grid;
  grid-template-columns: 92px 1fr 60px;
  gap: 12px;
  align-items: center;
}

.sliderLabel {
  color: #444;
  font-size: 0.95rem;
  white-space: nowrap;
}

.sliderVal {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: #222;
}

input[type="range"] {
  width: 100%;
}

/* Messages */
#sumWarn {
  margin: 12px 0 2px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #b00020;
}

#dotSummary {
  font-size: 0.9rem;
  color: #333;
  margin: 10px 0 4px;
}