/*Évaluation MINI */
.evaluation-container {
    width: 80%;
    margin: 20px auto; /* Ajoute des marges haut/bas et centre horizontalement */
    font-family: Lato, sans-serif;
    padding: 20px; /* Ajoute un espace intérieur au conteneur */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Ajoute une ombre légère autour */
    background-color: #fff; /* Fond blanc pour plus de lisibilité */
    border-radius: 8px; /* Coins légèrement arrondis */
}

.evaluation-table {
    width: 100%;
    border-collapse: collapse; /* Supprime les espaces entre les bordures */
    margin-top: 20px;
}

.evaluation-table th, 
.evaluation-table td {
    border: 1px solid #e0e0e0; /* Lignes discrètes pour séparer les colonnes */
    padding: 10px;
    text-align: left;
}

.evaluation-table th {
    background-color: #f4f4f4;
    font-weight: bold;
    text-align: center; /* Centre les titres des colonnes */
}

.evaluation-table td {
    vertical-align: middle; /* Aligne le contenu verticalement au centre */
}

.evaluation-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.evaluation-table tr:hover {
    background-color: #f1f1f1;
}

.evaluation-table input[type="radio"] {
    margin-left: 10px;
}
