/* Use darker version of global colors for nav and footer elements */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    width: 100%;
}

/* Ensure the bottom navigation is positioned at the bottom */
nav.bottom-nav {
    position: relative;
    bottom: 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 5px 20px; /* Adjust spacing as needed */
}

nav ul.center-links {
    display: flex;
    justify-content: center;
}

nav ul.left-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

nav ul.right-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav .left-links,
nav .right-links {
    flex-grow: 1;
    flex-basis: 0;
}

/* Optional: Change link colors in nav and footer if needed */
nav a {
    color: var(--accent-color); /* Use global accent color for links */
}
