/* 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.75rem 1.25rem;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}
.side-nav-item:hover {
    background-color: #f3f4f6;
    border-left-color: #3b82f6;
}
.side-nav-item.active {
    background-color: #eef2ff;
    border-left-color: #3b82f6;
    color: #3b82f6;
    font-weight: 600;
}

.internal-link {
    color: #3b82f6;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
}

.internal-link:hover {
    color: #1d4ed8;
    text-decoration: none;
}

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