/*
 * Navigation System — Topbar
 */
.library-topbar {
  position: relative;
  z-index: 1035;
  min-height: 40px;
  background: var(--brand-primary, var(--library-primary));
  color: #fff;
}

.library-topbar .topbar-inner {
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.library-topbar a {
  color: inherit;
  text-decoration: none;
}

.library-topbar a:hover {
  text-decoration: underline;
}

.library-topbar .topbar-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1rem;
}

@media (max-width: 767.98px) {
  .library-topbar .topbar-links {
    display: none;
  }

  .library-topbar .topbar-inner {
    justify-content: center;
  }
}

/* Public portal topbar refinement */
.library-topbar{min-height:var(--portal-public-topbar-height);font-size:var(--library-font-xs)}.library-topbar .topbar-inner{min-height:var(--portal-public-topbar-height);display:flex;align-items:center;justify-content:space-between;gap:1rem}.library-topbar a{font-size:var(--library-font-xs)}.topbar-links{display:flex;gap:1rem;align-items:center}

/* Public portal navigation scale refinement */
.library-topbar{
  min-height: 38px;
  font-size: .88rem;
  line-height: 1.35;
}
.library-topbar .container{
  min-height: 38px;
}
