/* Styles Globaux */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background-color: #ffffff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px;
}

.sidebar h2 {
    color: #2e7d32; /* Vert foncé */
    text-align: center;
    margin-bottom: 20px;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px;
    display: block;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.sidebar ul li a:hover {
    background-color: #2e7d32; /* Vert foncé */
    color: white;
}

.content h1, .content h2 {
    color: #2e7d32; /* Vert foncé */
}



.content p, .content ol, .content ul {
    line-height: 1.6;
    font-size: 1rem;
}

.content ol li, .content ul li {
    margin-bottom: 10px;
}
.dash{
    color: #2e7d32;
}

.dash:hover{
    
    color: rgb(3, 84, 36);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .content {
        margin-left: 0;
    }
}