/* General styling */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* Navbar container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 15px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px; /* Set a fixed height for the navbar */
}

/* Logo styling */
.navbar-logo img {
    margin-right: 20px;  /* Space between logo and buttons */
    height: 75px;
    width: auto;
}

/* Navbar menu styling */
.navbar-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;  /* Align buttons with the logo */
    
}

.navbar-menu {
    flex-grow: 1;  /* Grow the space after the logo but limit it */
    justify-content: flex-start;  /* Ensure buttons are left-aligned */
}

/* Navbar links */
.navbar-link {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin-left: 20px;
    border-radius: 5px;
    background-color: #006400; /* Initial shade of green */
    transition: background-color 0.3s ease;
}

/* Hover effect for buttons */
.navbar-link:hover {
    background-color: #32CD32; /* Lighter shade of green on hover */
}

/* Responsive logo and navbar layout */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-menu {
        flex-direction: column;
        width: 100%;
    }

    .navbar-link {
        margin: 5px 0;
        width: 100%;
    }
}

/* Main content padding to account for navbar height */
.main-content {
    padding-top: 75px; /* Same height as the navbar */
}