/* Shared top menu styles for SoulCore */
#html, body {
  margin: 0;
  padding: 0;
}
html, body {
  margin: 0;
  padding: 0;
}

#side-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0 !important;
  margin: 0;
  height: 56px;
  padding: 0 1rem;
  background: rgba(6,8,10,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 1000;
  box-sizing: border-box;
}
#side-menu a {
  color: #9fd1ff;
  text-decoration: none;
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.95rem;
  text-align: left;
  font-family: system-ui, "Segoe UI", Roboto, Arial, sans-serif;
}
#side-menu a.active {
  background: rgba(78,163,255,0.12);
  color: #cfeeff;
  font-weight: 700;
}
/* ensure page content isn't hidden under the fixed top bar */
body { padding-top: 56px; }
