/* -------------------------------------------------------- */
/* 🔹 Combined Statistics                                   */
/* -------------------------------------------------------- */
/* Per-day table for the combined today/tomorrow view        */
/* Mirrors combined_today_tomorrow_statistics.dart           */

.combined-statistics {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  padding: var(--space-s) var(--space-l);
  max-width: 620px;
  margin: 0 auto;
}

.combined-statistics__header {
  display: grid;
  grid-template-columns: 70px 1fr 1fr 1fr;
  gap: var(--space-xs);
}

.combined-statistics__header-cell {
  font-size: var(--text-body-small);
  color: var(--color-on-surface-variant);
  text-align: center;
}

.combined-statistics__row {
  display: grid;
  grid-template-columns: 70px 1fr 1fr 1fr;
  gap: var(--space-xs);
  align-items: start;
}

.combined-statistics__label-col {
  font-size: var(--text-body-medium);
  color: var(--color-on-surface-variant);
  align-self: center;
}

.combined-statistics__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.combined-statistics__value {
  font-size: var(--text-title-small);
  font-weight: var(--text-title-weight);
}

.combined-statistics__value--min {
  color: var(--color-price-green);
}

.combined-statistics__value--avg {
  color: var(--color-primary);
}

.combined-statistics__value--max {
  color: var(--color-price-red);
}

.combined-statistics__subtitle {
  font-size: 10px;
  color: var(--color-subtitle);
}

.combined-statistics__divider {
  height: 1px;
  background-color: var(--color-outline);
}


/* -------------------------------------------------------- */
/* 🔹 Desktop                                              */
/* -------------------------------------------------------- */

@media (min-width: 1000px) {
  .combined-statistics__value {
    font-size: 16px;
  }

  .combined-statistics__subtitle {
    font-size: 12px;
  }
}
