body {
        font-family: Georgia, serif;
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
        background: #8B0000;
    }

h1, h2, h3 {
  color: #8B0000;
  text-align: center;
}
.soustitre_chant{
    text-align: center;
    font-size: 0.8em;
    font-style: italic;
    color: #4682B4;
}

.petit-bleu {
  color: #4682B4;
  font-style: italic;
  font-size: 0.9em;
}
.lien-bleu{
    color: #4682B4;
}
    .reponse {
  font-weight: bold;
  color: #8B0000;
  margin: 10px 0;
}
    em {
      color: #888;
    }
    
hr {
  border: 0;
  height: 2px;
  background: #8B0000;
  margin: 30px 0;
}

.paragraphe-centrer {
  text-align: center;
  margin: 20px 0;
}

.explication-historique {
    border-radius: 6px;
    background: #F3DFC2;
    border-left: 3px solid #8b4513;
    padding: 10px 12px;
    margin: 10px 20px;
    font-style: italic;
    color: #386A93;
     line-height: 1.8;
     font-size: 0.8em;
}

/* Menu rond flottant */
.menu-rond {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.menu-rond button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Décalage du menu quand sidebar ouverte */
.menu-rond.shifted {
    transform: translateX(280px);
}

/* Sidebars générales */
.sidebar {
    position: fixed;
    top: 50px;
    left: -280px;
    width: 250px;
    max-height: 80vh;
    background-color: #fff8dc;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    padding: 20px;
    box-sizing: border-box;
    border-radius: 30px;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 900;
}

.sidebar.active {
    left: 20px;
}

/* Sidebar spécifique PRIÈRES */
.sidebar-prayer {
    background-color: #f9f0e6;
}

/* Champ de recherche */
.sidebar input {
    width: 70%;
    margin: 0 auto 20px;
    padding: 12px 20px;
    font-size: 12px;
    font-family: 'Comic Sans MS', cursive;
    text-align: center;
    border: 2px solid #999;
    border-radius: 999px;
    outline: none;
    background-color: #fffef2;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease;
}

.sidebar input:focus {
    border-color: #d4aa00;
    box-shadow: 0 0 5px rgba(212, 170, 0, 0.5);
}

/* Liste de chants */
.chant-list {
    overflow-y: auto;
    flex: 1;
    padding-right: 10px;
}

.chant {
    padding: 8px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

/* Boutons menu PRIÈRES */
.menu-button {
    display: block;
    width: 90%;
    margin: 15px auto;
    padding: 15px;
    font-size: 20px;
    font-family: Arial, sans-serif;
    text-align: center;
    border: 2px solid #888;
    border-radius: 999px;
    background-color: #fff;
    box-shadow: 1px 2px 4px rgba(0,0,0,0.1);
    transition: background-color 0.2s ease;
}

.menu-button:hover {
    background-color: #eee;
}

/* Contenu principal */
.contenu {
    padding: 80px 20px;
}

.chant-exemple {
    height: 1500px;
}

/* Responsive : adaptation aux petits écrans */
@media (max-width: 600px) {

    /* Réduit les boutons ronds */
    .menu-rond button {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /* Réduit les sidebars */
    .sidebar {
        width: 50%;
        left: -90vw;
        border-radius: 20px;
        padding: 15px;
    }

    .sidebar.active {
        left: 10px;
    }

    .menu-rond.shifted {
        transform: translateX(50vw);
    }

    /* Réduit les champs et textes */
    .sidebar input {
        width: 90%;
        font-size: 14px;
        padding: 10px;
    }

    .menu-button {
        font-size: 16px;
        padding: 12px;
    }

    .contenu {
        padding: 60px 15px;
    }

    .chant {
        font-size: 14px;
    }
}

.option-group {
    margin-bottom: 20px;
}

.option-group p {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 15px;
}

.pill-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill-button {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background: #f9f9f9;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pill-button:hover {
    background-color: #eee;
}

.pill-button.active {
    background-color: #222;
    color: #fff;
    border-color: #222;
}

.option-content {
    display: none;
    margin-top: 20px;
    padding: 12px;
    background-color: #fdfaf4;
    border-radius: 6px;
}
.chants {
    margin-top: 20px;
    padding: 12px;
    background: #fdfaf4;
    border-radius: 6px;
    font-family: "Arial", serif;
}

pre {
    font-family: "Arial", serif;
    white-space: normal;
}
.paragraphe-centrer{
    width: 95%;              /* ou toute autre largeur adaptée */
  margin: 0 auto;          /* centre le bloc horizontalement */
  text-align: left; 
}