/* Weather Forecast — feature-flagged UI (see js/features/weather-forecast/) */

/* Hidden by default; weather-forecast.js only reveals a given day's chip once
   the backend has FEATURE_WEATHER_FORECAST=true, the itinerary is locked, and
   that day falls within 3 days of today. Safe to leave this markup in
   index.html indefinitely even while the feature is off. */
.feature-weather {
  display: none;
}

/* Sits inside .day-box-header, alongside .day-box-spend/.day-box-planb-btn/
   .day-box-history-btn — same --on-brand-fill treatment and inherited
   foreground as those three (see css/style.css), not a literal white. A
   literal white/rgba(255,255,255,…) pair on that header's --vn-teal fill is
   the Mint Flip Rule bug (issue #432): --vn-teal is a bright mint after
   dark, where literal white measured 1.31:1. This file isn't scanned by
   test/brand-field-contrast.test.js (style.css only), which is exactly how
   this one went unnoticed while its siblings were fixed. */
.weather-chip {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: inherit;
  background: var(--on-brand-fill);
  border-radius: var(--radius-pill);
  padding: var(--space-2xs) var(--space-md);
  white-space: nowrap;
}
