#topbar {
  background: var(--navy);
  padding: 6px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
}

#topbar .links-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  justify-content: flex-end;
  align-items: center;
}

#topbar a {
  color: rgba(255, 255, 255, .8);
  font-size: .7rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

#topbar a:hover {
  background: rgba(56, 186, 204, .2);
  color: var(--cyan);
}

#topbar a i {
  font-size: .65rem;
}

@media (max-width: 576px) {
  #topbar .links-wrap {
    justify-content: center;
  }
}
