@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

/*
 *  This stylesheet relates to the navigation bar
 * */

/* Stylesheet for the navigation bar */

/* Navbar container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(232, 216, 177, 0.9);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    height: 58px;
    padding: 0 20px; /* Add padding to the navbar */
    font-family: 'Lato', sans-serif;
}

.nvabar img {
    align-self: center;
}

/* Logout button */
.logout-button {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px 20px; /* Adjust padding */
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-right: 10px; /* Add right margin */
}

/* Navigation links container */
.nav-links {
    display: flex;
    flex-wrap: wrap; /* Allow links to wrap if they exceed the container width */
}

/* Navigation links */
.nav-links a {
    color: #333; /* Link text color */
    text-decoration: none;
    padding: 10px 10px; /* Adjust padding */
    margin: 0 5px; /* Add some margin around each link */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

/* Styling for active link */
.nav-links a.active {
    background-color: #ddd; /* Change background color when link is active */
}

/* Hover effect for navigation links */
.nav-links a:hover {
    background-color: #ddd; /* Change background color on hover */
    border-radius: 5px; /* Add rounded corners on hover */
}

/* Adjust spacing between navigation links */
.nav-links a:not(:last-child) {
    margin-right: 10px;
}

