/*--------------------------------------------------------------
This is your custom stylesheet.

Add your own styles here to make theme updates easier.
To override any styles from other stylesheets, simply copy them into here and edit away.

Make sure to respect the media queries! Otherwise you may
accidentally add desktop styles to the mobile layout.
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
--------------------------------------------------------------*/


/* Force horizontal layout for member nav menu */
.members-type-navs .component-navigation.members-nav {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  padding: 6px 0 !important;
  overflow: visible !important;
}

/* Show all items and prevent hiding */
.members-type-navs .component-navigation.members-nav > li {
  display: inline-flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  white-space: nowrap !important;
  margin-right: 6px !important;
}

/* Style links inside nav */
.members-type-navs .component-navigation.members-nav > li a {
  font-size: 9px !important;
  padding: 4px 8px !important;
  display: inline-block !important;
  white-space: nowrap !important;
  min-width: 50px;
}

/* Hide the 3-dot "More" menu completely */
.members-type-navs .component-navigation.members-nav > li.hideshow.menu-item-has-children1 {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}