/* Make 5th nav button visible on mobile */
.wc-hub-nav.fbb-league-stats-nav {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  overflow: visible !important;
}

.wc-hub-nav.fbb-league-stats-nav #hubNavWatchHighlights {
  grid-column: 1 / -1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
}

@media (min-width: 760px) {
  .wc-hub-nav.fbb-league-stats-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .wc-hub-nav.fbb-league-stats-nav #hubNavWatchHighlights {
    grid-column: auto !important;
  }
}
