.navbar {
    background-color: #333; /* Dark background for the navbar */
    overflow: hidden;
    position: fixed; /* Optional: Fixes the menu to the top of the page */
    top: 0;
    width: 100%;
}

.nav-link {
    float: left;
    display: block;
    color: #f2f2f2; /* Light text color */
    text-align: center;
    padding: 14px 16px;
    text-decoration: none; /* Removes underlines from links */
    font-size: 17px;
}

.nav-link:hover {
    background-color: #ddd; /* Color change on hover */
    color: black;
}

.nav-link.active {
    background-color: #4CAF50; /* Style for the active/current page link */
    color: white;
}
