body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f2ede4;
    color: #2b2b2b;
    line-height: 1.6;
}

header {
    background-color: #a8c686;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #2b2b2b;
}

header p {
    font-style: italic;
    color: #4a4a4a;
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
}

article {
    margin-bottom: 3rem;
    background-color: #ffffff;
    padding: 2rem;
    border-left: 6px solid #d4af37;
    box-shadow: 2px 10px 10px rgba(0, 0, 0, 0.05);
}

article h2 {
    margin-top: 0;
    color: #2b2b2b;
}

article em {
    background-color: #fdf6e3;
    padding: 0.2rem 0.4rem;
    font-style: normal;
    color: #d35400;
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #777;
}

div {
    padding: 10px;
}

.email {
    border-color: black;
    border-radius: 5px;

}

.commentaire {
    width: 790px;
    height: 150px; /*taille du comentaire*/
    border-color: black;
    border-radius: 5px;
}

textarea {
    vertical-align: top; /* est censé mettre le texte du commentaire en haut */
    padding-top: 8px;
    line-height: 1.5;
    border-color: black;
    border-radius: 5px;
}

.envoi {
    background-color: #ffffff;
    border-radius: 0.2rem;
    border-color: #d4af37;
    color: #d4af37;
    width: 100px;
    height: 25px;
    font-size: 12px;
}

.profil {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.profil img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4af37;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.like-container {
    margin-top: 2rem;
    text-align: center;
}

.like-btn {
    background-color: white;
    color: #d62828;
    border: 2px solid #d62828;
    padding: 0.6em 1.2em;
    font-size: 1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.like-btn:hover {
    background-color: #d62828;
    color: white;
}

.imagestatistique {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
}
nav {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    font-family: sans-serif;
}
.profile {
    max-width: 600px;
    margin: 2rem auto;
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #a7c485;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.05);
}
.profile h1 {
    margin-top: 0;
}
.profile p {
    line-height: 1.6;
}
.highlight {
    font-weight: bold;
    color: darkred;
}
.download-btn {
    margin-left: 1rem;
    padding: 0.8rem 1.2rem;
    background-color: #d9f0dc;
    color: #2b5d34;
    font-weight: bold;
    border: 2px solid #a4d4a2;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #bfe6c4;
    color: #1c3f23;
}
.comment {
    background-color: #f1f1f1;
    padding: 1rem;
    border-left: 4px solid #87bfa1;
    margin-top: 1.5rem;
    border-radius: 6px;
    font-family: 'Georgia', serif;
}

.comment p:first-child {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.comment p {
    font-size: 1rem;
    line-height: 1.4;
}

.comment-space {
    height: 2rem; /* espace entre les commentaires */
}