/* Styles spécifiques pour la page d'aide */
.help-container {
    display: flex;
    min-height: calc(100vh - 300px);
}
.side-nav {
    width: 280px;
    border-right: 1px solid #e5e7eb;
    background-color: #f9fafb;
}
.content-area {
    flex: 1;
    padding: 2rem;
}
.help-section {
    display: none;
}
.help-section.active {
    display: block;
}
.side-nav-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.side-nav-item svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.side-nav-item:hover {
    background-color: #f3f4f6;
    border-left-color: #818cf8;
}
.side-nav-item.active {
    background-color: #eef2ff;
    border-left-color: #4f46e5;
    color: #4f46e5;
    font-weight: 600;
}

.img-aide {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 750px;
    max-height: 500px;
}

@media (max-width: 768px) {
    .help-container {
        flex-direction: column;
    }
    .side-nav {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    .img-aide {
        max-width: 100%;
        height: auto;
    }
}