body {
  padding-top: 60px;
  background-color: black;
  color: cyan;
  font-family: Verdana;
  margin: 0; /* Removes default body margin */
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* Full width, not 200% */
  z-index: 1000;
  background-color: black;
  color: white;
  display: flex; 
  flex-direction: row; /* Explicitly forces side-by-side */
  margin: 0;
  padding: 0;
  list-style: none; /* Removes bullets */
}

.navbar li {
  /* Ensures list items don't stack */
  display: block; 
}

.navbar li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #39ff14;
  border-right: 1px solid #ccc; 
  transition: all 0.3s ease;
}

/* Remove divider from the last item */
.navbar li:last-child a {
  border-right: none;
}

/* NEON GREEN HOVER */
.navbar li a:hover {
  color: #39ff14; /* Neon Green Text */
  background-color: rgba(57, 255, 20, 0.1);
  box-shadow: 0 0 15px #39ff14; /* Glow */
}   