﻿/* Container for the top navigation bar inside MudAppBar */
.nav-container {
    display: flex;
    justify-content: center; /* Centers the nav links horizontally */
    align-items: center;
    width: 100%;
    padding: 10px 20px;
}

/* Logo section (optional, if you want to center the logo too) */
.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    position: absolute; /* Take the logo out of the flex layout */
    left: 20px; /* Position it on the left */
}

/* Links container */
.nav-links {
    display: flex;
    gap: 20px;
    justify-content: center; /* Centers links inside */
}

/* Styling for each nav link */
.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    /* Hover effect for nav links */
    .nav-link:hover {
        background-color: #555;
    }

/* Optional: Adding responsiveness for smaller screens */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
}
