/* sticky-menu.css */
#sticky-nav-outer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999998;
  margin: 0;
  padding: 0;
  overflow: visible;
}

#sticky-nav {
  position: absolute;
  left: 20px;
  top: 200px;
  z-index: 999999;
  background: rgba(0,0,0,0.9);
  border: 1px solid #FFF;
  border-radius: 8px;
  padding: 10px;
  width: 290px;
  pointer-events: auto;
}
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 12px;
    margin: 6px 0;
    font-weight: bold;
    font-family: Arial, sans-serif;
    border-left: 2px solid transparent;
    transition: all 0.2s;
}

.nav-link:hover {
    border-left: 2px solid #00ffcc;
    background: rgba(0, 255, 204, 0.1);
}

.nav-link.active {
    border-left: 2px solid #00ffcc;
    background: rgba(0, 255, 204, 0.2);
}