/* Boutons j'aime/commentaires */
.com-like {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.com-like button {
    background-color: #007799;
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.com-like button:hover {
    background-color: #005f73;
}

/* Bouton retour en haut */
.button {
    display: inline-block;
    background-color: #008C5F;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 0.95rem;
    border: none;
    margin: 30px auto;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.button:hover {
    background-color: #006b47;
}

.pButton {
    margin: 0;
}