/* HAB-42 bay walk foot bar — compact in-world chrome */
#hab-path-bar {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 0.45rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  max-width: min(520px, calc(100vw - 1.2rem));
  padding: 0.28rem 0.65rem;
  font-family: "Share Tech Mono", ui-monospace, Menlo, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: #8fd4b0;
  background: rgba(4, 12, 18, 0.92);
  border: 1px solid rgba(61, 255, 154, 0.35);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(61, 255, 154, 0.1);
  pointer-events: auto;
}
#hab-path-bar a {
  color: #5ce1ff;
  text-decoration: none;
  white-space: nowrap;
}
#hab-path-bar a:hover {
  color: #3dff9a;
  text-decoration: underline;
}
#hab-path-bar .hab-path-sep {
  color: #3a6a52;
  user-select: none;
}
#hab-path-bar .hab-path-here {
  color: #c8f5dc;
  opacity: 0.85;
  max-width: 9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 520px) {
  #hab-path-bar {
    font-size: 0.55rem;
    gap: 0.35rem;
    padding: 0.24rem 0.5rem;
  }
  #hab-path-bar .hab-path-here { display: none; }
}
/* Leave room above ambient chip when both present */
body.hab-path-on #ambient,
body.hab-path-on #lab-ambient {
  bottom: 2.35rem;
}
