/* Styles pour une lecture agréable */
body {
    font-family: 'Georgia', serif;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    background-color: #f2f2f2;
    margin: 0;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px;
    text-align: justify;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

blockquote {
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #ecf0f1;
    border-left: 5px solid #3498db;
}

code {
    font-family: 'Courier New', monospace;
    background-color: #ecf0f1;
    padding: 2px 4px;
    border-radius: 3px;
}

pre {
    background-color: #ecf0f1;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
}

img {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #3498db;
    color: #fff;
}

li {
    margin-bottom: 10px;
    padding-left: 20px;
    text-indent: -20px;
    list-style: none;
    position: relative;
}

li::before {
    content: '-'; /* Utiliser un tiret pour les dialogues */
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    body {
        font-size: 18px;
        padding: 10px;
    }
}
