/* Ajoutez ici vos styles CSS qui étaient dans le <style> */

/* Optimisation pour l'affichage des articles */
.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-content h2 {
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.article-content h3 {
    margin-top: 1.5rem;
    color: var(--secondary-color);
}

.article-content pre {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
}

.article-content code {
    background-color: #f1f3f4;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.article-content table th,
.article-content table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
}

.article-content table th {
    background-color: var(--light-color);
    font-weight: 600;
}

/* Amélioration de la sidebar */
.sidebar .nav-link {
    transition: all 0.2s ease;
}

.sidebar .nav-link:hover {
    transform: translateX(5px);
}

/* Style pour les badges dans les articles */
.badge-light {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}