/* Unified top navigation bar injected on every proxied page. */
#aioe-topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 22px;
  background: #1a1a2e;
  box-shadow: 0 1px 8px rgba(10, 15, 40, 0.25);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
#aioe-topnav .aioe-brand {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #0a60ff, #0891b2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#aioe-topnav a {
  color: #c7d0e0;
  text-decoration: none;
  font-size: 14px;
  line-height: 48px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
#aioe-topnav a:hover {
  color: #ffffff;
}
#aioe-topnav a.active {
  color: #ffffff;
  border-bottom-color: #0891b2;
}
#aioe-topnav a.aioe-home {
  margin-left: auto;
  color: #8b93a7;
  font-size: 13px;
}

/* Push the Material header + content below the injected bar. */
.aioe-has-topnav {
  padding-top: 48px !important;
}
.aioe-has-topnav .md-header {
  top: 48px !important;
}
