/* Style du menu horizontal */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f0f9f4; /* Vert très clair */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Pleine hauteur de la fenêtre */
}
.menu {
    display: flex;
    justify-content: center; /* Centre horizontalement les éléments */
    align-items: center;
    background-color: #333; /* Couleur de fond du menu */
    padding: 10px;
    position: fixed; /* Fixe le menu en haut de la page */
    top: 0;
    left: 0;
    width: 100%; /* Le menu occupe toute la largeur */
    z-index: 1000; /* Toujours au-dessus des autres éléments */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Ombre sous le menu */
}

/* Style des boutons */
.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background-color: #4CAF50; /* Couleur verte */
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #45a049; /* Couleur au survol */
}

/* Marges entre les boutons */
.menu-item {
    margin: 0 10px; /* Espacement horizontal entre les boutons */
}

/* Espace pour éviter que le contenu principal chevauche le menu */
.content {
    margin-top: 60px; /* Hauteur du menu */
    padding: 20px;
}

.commentaire {
    margin: 20px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 5px solid #4CAF50;
    font-size: 16px;
}

.commentaire p {
    margin: 5px 0;
}
.form-container {
    background-color: #fff;
    width: 60%;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    color: #4CAF50; /* Couleur verte pour le titre */
    text-align: center;
}

textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
    font-size: 14px;
    margin-bottom: 10px;
}
.success-message {
    color: green;
    font-weight: bold;
}

.error-message {
    color: red;
    font-weight: bold;
}
h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}
a {
    display: block;
    color: #2e8b57; /* Vert forêt */
    font-size: 1.2em;
    text-align: center;
    text-decoration: none;
    font-family: Arial, sans-serif;
    margin-top: 15px;
    transition: color 0.3s ease;
}

a:hover {
    color: #45a049; /* Vert clair au survol */
    text-decoration: underline;
}
/* partie creer un compte rendu */

