/* Ligne du thème */
.theme-row {
    background-color: #f0f0f0;   /* fond gris clair */
    font-weight: bold;           /* texte en gras */
    text-align: left;            /* alignement du texte */
    font-size: 1.1em;            /* un peu plus gros que les sujets */
}

/* Cellules normales de sujets */
tbody tr td {
    padding: 6px 12px;
    border-bottom: 1px solid #ddd;
}

/* En-têtes du tableau */
thead th {
    background-color: #333;
    color: white;
    padding: 8px 12px;
}

#detail-panel {
    position: relative;
    min-height: 200px;
    max-height: 5000px;
    padding: 15px;
    color: #033463 ;
    z-index: 1;
}
.card-body {
    background-color: #fdfde2 !important;
    background-image: url("../images/base/parchemin-6aab4da0dc1ae009a3bb70d6e010e20d.jpg");
    background-repeat: no-repeat;
    background-size: cover;

}
.priereMob{
    color: #033463 !important;
    background-color: #fdfde2 !important;
}
.fondBleu{
    background-color: #033463 !important;
    color: #fdfde2 !important;
}
#detail-panel::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("../images/base/parchemin-6aab4da0dc1ae009a3bb70d6e010e20d.jpg");
    background-size: cover;
    /*background-size: contain;*/
    background-position: center;
    background-repeat: no-repeat ;

    /*opacity: 0.6;   /* fonce l’image */
    z-index: -1;    /* reste derrière le texte */
}
.priere-titre.selected {
    background-color: #004085;   /* bleu clair */
    font-weight: bold;
    color: #19b1b1;             /* bleu foncé */
}

.priere-titre {
    transition: background-color 0.3s;
}

.priere-titre:hover {
    background-color: #004085;
    color: #fdfde2;
}

