/* ===== Admin Global Navigation ===== */
.topbar__nav {
  background: #ffffff;
  padding: 12px 20px;
  display: flex;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}

.topbar__nav a {
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
}

.topbar__nav a:hover {
  opacity: 1;
}

.topbar__nav a.is-active {
  opacity: 1;
  font-weight: 600;
  position: relative;
}

.topbar__nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: #111827;
}

.topbar__nav {
  position: sticky;
  top: 0;
  z-index: 1000;
}