/* ============================================================
   Trail Conditions — Plan (Weekly forecast) page
   7-day forecast table rendered on plan.html and today.html
   Weekly tab.
   ============================================================ */

/* ── 7-day forecast table ───────────────────────────────── */
.week-row {
  display: grid;
  grid-template-columns: 72px 28px 1fr 96px 48px;
  align-items: center;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}
.week-row:last-child { border-bottom: none; }
.week-row.today-row { background: rgba(26,61,43,0.04); }
.wd-day { font-size: 0.85rem; font-weight: 600; }
.wd-day.today-lbl { color: var(--forest); }
.wd-icon { font-size: 1.2rem; text-align: center; }
.wd-status-bar { display: flex; flex-direction: column; }
.wd-status-label {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  width: fit-content;
  background: var(--s-bg, #eee);
  color: var(--s-color, #888);
}
.wd-temps {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
}
.wd-lo { font-weight: 500; color: var(--muted); }
.wd-hi { font-weight: 600; color: var(--text); }
.temp-bar-track {
  flex: 1;
  height: 5px;
  background: #e8e8e8;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.temp-bar-fill {
  position: absolute;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #74b0e8 0%, #f5a742 100%);
}
.wd-precip {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
}
.wd-rain-wrap {
  width: 100%;
  height: 28px;
  display: flex;
  align-items: flex-end;
}
.wd-rain-bar {
  width: 100%;
  border-radius: 2px 2px 0 0;
  min-height: 0;
}
.wd-rain-amt {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--blue);
  height: 13px;
  line-height: 1;
  text-align: center;
}
