/* General styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
    color: #333;
}

.container {
    display: flex;
    flex-direction: row;
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    height: 100vh;
    background: #28a745;
    color: white;
    padding-top: 20px;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
}

.sidebar h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.sidebar ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    padding-left: 10px;
    border-radius: 5px;
}

/* Content Area */
.content {
    margin-left: 250px;
    padding: 20px;
    flex-grow: 1;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #28a745;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}
