/* lang-switch.css */

/* make the nav-list a flex container (should already be, but just in case) */
#navbarCollapse .navbar-nav {
  display: flex;
}

/* push the first <li> (the babelquarto dropdown) to the very end */
#navbarCollapse .navbar-nav > li:first-child {
  order: 999 !important;
}
