@charset "utf-8";

/* Conserve l'alignement centré pour le reste */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    text-align: center;
}

/* Forcer uniquement les paragraphes à être alignés à gauche */
p {
    text-align: left;
}

.container {
    width: 100%;
    margin: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 5px 0;
}

.chapter-link {
    text-decoration: none;
    color: #007bff;
    font-size: 18px;
    cursor: pointer;
}

.chapter-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

.image-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

#chapter-container {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 150px;
}

#retour-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}

#retour-btn:hover {
    background-color: #0056b3;
}
