/* Navbar Container */
.navbar {
    background-color: #1a1a1a;
    padding: 0;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 255, 0, 0.2);
    max-width: 1000px;
    width: 95%;
}

/* Remove default list styling */
.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar li {
    margin: 0;
}

/* Style navbar links */
.navbar a {
    display: block;
    color: #00ff00;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-right: 1px solid #333;
}

.navbar li:last-child a {
    border-right: none;
}

/* Hover effects */
.navbar a:hover {
    background-color: #00ff00;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 255, 0, 0.4);
}

/* Active/Current page effect */
.navbar a:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 255, 0, 0.3);
}

/* Add a subtle glow effect on hover */
.navbar a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
    }
    
    .navbar a {
        border-right: none;
        border-bottom: 1px solid #333;
        width: 100%;
        text-align: center;
    }
    
    .navbar li:last-child a {
        border-bottom: none;
    }
}
