@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

.sidebar {
    width: 250px;
    background-color: #11642E ;
    padding: 20px;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
}

.sidebar-logo {
    text-align: center;
    margin-bottom: 20px;
}


.sidebar-nav {
    flex-grow: 1;
}

.sidebar-logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #FFFFF0;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: #11642E;
}

.sidebar-nav a {
    padding: 10px 15px;
    margin: 5px 0;
    text-decoration: none;
    color: #FFFFF0;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    border-radius: 5px;
    display: block;
}

.sidebar-nav a.active,
.sidebar-nav a:hover {
    background-color: #339966;
    color: #FFFFF0;
}

.sidebar-login {
    text-align: center;
    margin-top: auto;
    padding: 10px; /* Add some padding around the button */
}

.login-btn {
    display: inline-block; /* Allows setting padding and margins */
    padding: 10px 20px; /* Button padding */
    background-color: #11642E; /* Button color */
    color: #fff; /* Text color */
    font-weight: bold; /* Make the text bold */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline from anchor */
    transition: background-color 0.3s; /* Smooth background color transition */
    font-family: 'Montserrat', sans-serif;
}

.login-btn:hover, .login-btn:focus {
    background-color: #0e5a24; /* Darker shade on hover/focus */
    color: #fff; /* Ensuring text color remains white */
    outline: none; /* Remove outline on focus */
}

.navbar-mobile {
    display: none;
}

.sidebar-nav a i, .login-btn i {
    margin-right: 10px;
}

/* Top Navigation Bar */
.navbar-mobile {
    display: none;
    justify-content: flex-start;
    align-items: center;
    background-color: #11642E;
    color: white;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.menu-button {
    font-size: 30px;
    cursor: pointer;
    margin-right: 10px;
}

.menu-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
}

/* Sliding Sidebar Menu */
.mobile-sidebar {
    position: fixed;
    top: 60px; /* Height of the top navbar */
    left: -250px; /* Initially off-screen */
    width: 250px;
    height: calc(100% - 60px); /* Full height minus navbar */
    background-color: #11642E;
    overflow-y: auto;
    transition: left 0.3s;
    z-index: 1;
    padding-top: 20px; /* Increased padding at the top */
}

.sidebar-link {
    font-family: 'Lato', sans-serif;
    display: block;
    color: white;
    padding: 15px 20px; /* Increased padding for more space between items */
    text-decoration: none;
    font-size: 18px; /* Optional: Adjust font size as needed */
}

.sidebar-link:hover {
    background-color: #0e5a24;
}

/* Main Content */
.content {
    padding-top: 60px; /* Space for the fixed top navbar */
}


@media screen and (max-width: 768px) {
    .navbar-mobile {
        display: flex;
    }

    .sidebar {
        display: none;
    }
}

/* Other styling as needed */
