/* Reset default list styles */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #333; /* Dark background for navbar */
    text-align: center;
}

/* Make the navbar horizontal */
nav ul li {
    display: inline-block; /* Display items in a row */
    margin: 0 15px; /* Add spacing between links */
}

/* Style the links */
nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px 15px;
    display: inline-block;
}

/* Add hover effect */
nav ul li a:hover {
    background: #555;
    border-radius: 5px;
}

