/* Styles de base */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Titres */
h1 {
    text-align: center;
    color: #0056b3;
    font-size: 2em;
    margin-bottom: 20px;
}

h2 {
    color: #007bff;
    margin-top: 30px;
    font-size: 1.5em;
}

ol {
    margin-left: 20px;
    padding-left: 0;
}

ul {
    margin-left: 20px;
    list-style-type: disc;
}

li {
    margin-bottom: 8px;
}

/* Code blocks */
code, pre {
    font-family: Consolas, Monaco, monospace;
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 5px;
    color: #d63384;
    font-size: 0.95em;
}

/* Boîte des blocs de code */
pre {
    background: #343a40;
    color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    overflow: auto;
    margin: 15px 0;
}

/* Liens */
a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Marges entre les sections */
h2 + ol {
    margin-top: 10px;
}

h2 + ul {
    margin-top: 10px;
}
