/* Fish Forecast View styles */
.fish-forecast-board {
  overflow-x: auto;
  padding: 0;
}

.fish-forecast-columns {
  align-items: stretch;
  min-width: max-content;
}

.fish-forecast-col {
  flex: 0 0 190px;
  min-height: 520px;
  padding: 10px 10px 12px 10px;
  text-align: center;
  align-items: center;
  gap: 0;
}

.fish-forecast-col:last-child {
  border-right: none;
}

.fish-forecast-weather-icon {
  width: 80%;
  max-width: 84px;
  margin-top: 2px;
}

.fish-forecast-temp-row {
  margin-top: 2px;
}

.fish-forecast-full-date {
  width: 100%;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1.25;
}

.fish-forecast-condition {
  width: 100%;
  color: var(--text-dim);
  font-size: 0.8rem;
  line-height: 1.35;
  min-height: 3.2em;
  margin: 6px 0 2px 0;
}

.fish-forecast-metric-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
}

.fish-forecast-metric-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.82rem;
  line-height: 1.2;
}

.fish-forecast-fish-list {
  width: 100%;
  margin-top: 2px;
  padding-top: 2px;
}

.fish-forecast-species-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 3px 0;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.theme-light .fish-forecast-species-row {
  border-bottom-color: rgba(20, 20, 20, 0.08);
}

.fish-forecast-species-row:last-child {
  border-bottom: none;
}

.fish-forecast-species-name {
  flex: 1;
  text-align: left;
}

.fish-forecast-species-cpi {
  font-weight: 700;
  color: var(--accent-blue);
}

.fish-forecast-empty {
  color: var(--text-dim);
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: left;
}

/* Hourly freshwater fish view: tighten columns without affecting daily fish forecast. */
#fish-hourly-forecast-view .fish-forecast-columns {
  gap: 0;
}

#fish-hourly-forecast-view .fish-forecast-col {
  flex: 0 0 164px;
  min-height: 460px;
  padding: 8px 8px 10px 8px;
}

#fish-hourly-forecast-view .fish-forecast-full-date {
  margin-top: 4px;
}

#fish-hourly-forecast-view .fish-forecast-condition {
  min-height: 0;
  margin: 4px 0 2px 0;
}
