/* Style général de la page */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    color: #222;
}

/* Bandeau du haut */
header {
    background: #2c3e50; /* fond bleu foncé */
    color: white;
    padding: 25px;
    text-align: center;
}

/* Texte introductif centré */
.intro {
    max-width: 700px;
    margin: 0 auto;
}

/* Contenu principal */
main {
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

/* Section qui contient la vidéo */
.video-section {
    text-align: center;
    margin-bottom: 40px;
}

/* Conteneur des boutons de chapitres */
.controls {
    margin-top: 15px;
}

/* Style des boutons de chapitres */
.controls button {
    margin: 5px;
    padding: 10px 15px;
    border: none;
    background: #3498db; /* bleu */
    color: white;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
}

/* Effet au survol */
.controls button:hover {
    background: #2980b9;
}

/* Titres H2 */
h2 {
    margin-top: 40px;
    border-bottom: 2px solid #3498db; /* ligne bleue */
    padding-bottom: 5px;
}

/* Conteneur des boutons Play / Pause / Rewind / Forward */
.video-controls-extra {
    margin-top: 15px;
}

/* Style des boutons vidéo personnalisés */
.video-controls-extra button {
    background-color: #3498db; /* bleu */
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 8px;
    font-size: 20px; /* icônes plus grandes */
    cursor: pointer;
    color: white;
}

/* Effet au survol */
.video-controls-extra button:hover {
    background-color: #217dbb;
}
