/* Styling for the navbar */
.navbar {
    display: flex;
    justify-content: center; /* Center align the navigation links */
    background-color: #333; /* Dark background for contrast */
    padding: 10px 0;
}

.nav-links {
    list-style: none; /* Remove default list styling */
    display: flex;
    gap: 20px; /* Add spacing between links */
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white; /* Ensure text is visible */
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease; /* Smooth hover effect */
}

.nav-links a:hover {
    color: #ffcc00; /* Highlight on hover */
}