/* Réinitialisation des styles par défaut du navigateur */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Styles généraux du corps de la page */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    min-height: 100vh;
    flex-wrap: wrap; /* Permet le passage à la ligne pour les boîtes d'avis */
}

/* Conteneur principal de la page */
.dashboard-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Styles pour le bandeau en haut de la page */
header {
    background-color: #333;
    color: white;
    padding: 10px; /* Taille du padding réduite pour le bandeau du titre */
    text-align: center;
    box-sizing: border-box;
}

/* Styles pour le titre de la page */
h1 {
    font-size: 1.5em; /* Taille de la police réduite pour le titre */
    margin-bottom: 5px; /* Marge inférieure réduite pour le titre */
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* Styles pour la section principale de la page */
section {
    margin: 20px;
}

/* Ajoutez ces styles pour une apparence plus propre */

/* Styles pour les blocs d'avis */
.avis-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.avis {
    width: calc(33.33% - 20px);
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* Styles pour le nom */
.avis .name {
    font-size: 1.2em;
    font-weight: bold;
}

/* Styles pour le type de personne */
.avis .type {
    font-style: italic;
    color: #777;
}

/* Styles pour le commentaire */
.avis .comment {
    margin-top: 10px;
}

/* Styles pour la signature et la date */
.avis .signature,
.avis .date {
    font-weight: bold;
    text-align: right;
    margin-top: 10px;
    color: #777;
}

/* Styles pour le message "Aucun avis disponible" */
.no-avis {
    color: #777;
}

/* Styles pour les boutons de filtre */
.filter-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.filter-buttons button {
    background-color: #a3e473;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 5px; /* Ajout de marges entre les boutons */
}

.filter-buttons button:last-child {
    margin-right: 0; /* Supprime la marge du dernier bouton */
}

.filter-buttons button:hover {
    background-color: #a3e473;
}




/* Ajoutez ces styles pour une apparence plus propre */
footer {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}


/* Ajoutez ces styles pour une apparence plus propre */
footer {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}
