/* Close by default; only open when Bootstrap adds .show */
.navbar .nav-item.dropdown .dropdown-menu:not(.show) {
  display: none !important;             /* keep it closed */
}

/* When open, flip the order of Season links */
.navbar .nav-item.dropdown .dropdown-menu.show {
  display: flex !important;             /* only flex WHILE open */
  flex-direction: column-reverse;       /* Season 2 above Season 1 */
}

/* Normal link sizing inside the dropdown */
.navbar .nav-item.dropdown .dropdown-menu.show .dropdown-item {
  flex: 0 0 auto;
}
