/* Style pour la liste des intentions */
.prayer-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Chaque intention */
.prayer-item {
    border: 1px solid #be4750; /* Bordure avec couleur principale */
    padding: 15px;
    border-radius: 8px;
    background-color: #ffffff; /* Fond blanc pour un bon contraste */
    position: relative;
}

/* Bouton "J'ai prié" */
.pray-btn {
    background-color: #ffaa55; /* Couleur d'arrière-plan orange clair */
    color: white;
    border: none;
    padding: 7px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.pray-btn:hover {
    background-color: #be4750; /* Changement de couleur au survol */
}

/* Formulaire de soumission */
#prayer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

#prayer-form input,
#prayer-form select,
#prayer-form textarea {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #be4750; /* Bordure avec couleur principale */
    width: 100%;
    box-sizing: border-box;
}

#prayer-form button {
    background-color: #be4750; /* Bouton avec couleur principale */
    color: #ffffff; /* Texte blanc sur fond coloré */
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#prayer-form button:hover {
    background-color: #ffaa55; /* Changement de couleur au survol */
}

/* Message de confirmation */
#pi-message {
    margin-top: 10px;
    font-weight: bold;
    color: #be4750; /* Texte en couleur principale */
}
