body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
}

/* Side Menu */
.sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250;
    height: 100%;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
	transition: left 0.3s ease-in-out;
}
.sidebar a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin: 15px 0;
    font-size: 16px;
}
.sidebar a:hover {
    text-decoration: underline;
}

/* Sidebar Toggle Button */
#menuToggle {
    position: fixed;
    top: 15px;
    left: 15px;
    background-color: #5a7d6e; /* Green button */
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1100;
    transition: background-color 0.3s ease-in-out;
}

#menuToggle:hover {
    background-color: #4a665a; /* Darker green on hover */
}

/* Header */
header {
    background-color: #2c3e50;
    color: #fff;
    padding: 40px;
    text-align: center;
}
.container {
    margin-left: 270px;
    padding: 20px 0;
    max-width:80%;
}

/* Home Button */
.btn-back {
    background-color: #3b6b58; 
    color: #fff;
    border: 2px solid #2c5c4a;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    display: inline-block;
    margin-top: 15px;
}
.btn-back:hover {
    background-color: #244c3c;
    color: #fff;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}
footer a {
    color: #88b097;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}