<style>
/* Styles pour le tableau généré */
.tableau-container {
    margin-top: 20px;
}
.ligne-tableau {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
.ligne-tableau:nth-child(even) {
    background-color: #f9f9f9;
}
.hebergeur, .chauffeur, .places {
    flex: 1;
    padding: 5px;
}

/* Ajoutez ici d'autres styles spécifiques à votre plugin */


.tableau-genere {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tableau-genere th, .tableau-genere td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.tableau-genere th {
    background-color: #f2f2f2;
    font-weight: bold;
}

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

.tableau-genere tr:hover {
    background-color: #f5f5f5;
}
</style>