/* Navbar Styling */
.navbar {
    width: 100vw; /* Ensure the navbar takes the full viewport width */
    max-width: 100%; /* Limit width to avoid any overflow */
    position: fixed;
    top: 0;
    left: 0; /* Align navbar to the left edge */
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 15px 0;
    box-shadow: 0 0 15px #00ff00;
    z-index: 2;
}

.navbar a {
    padding-bottom: 5px; /* Adjusts space for underline */
    color: #00ff00;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: text-shadow 0.3s ease;
}
 .active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #00ff00;
}

.navbar a:hover {
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.8),
                 0 0 10px rgba(0, 255, 0, 0.4);
}