/* Configuration de base */



.table-container {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	width: 100%;
    max-width: 1280px;
    /*margin: 0 auto;*/
}

/* Structure du Tableau */
.volencours-table {
    width: 100%;
    border-collapse: separate; /* Obligatoire pour l'espacement et les arrondis */
    border-spacing: 0 12px;    /* Espacement vertical entre les lignes */
}

.volencours-table th {
    color: #fdfdfd;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 10px 0px;
    text-align: center;
    background-color: rgb(0, 64, 128);

}

/* Gestion des coins arrondis par ligne */
.volencours-table th:first-child {
    border-radius: 15px 0 0 15px;
}

.volencours-table th:last-child {
    border-radius: 0 15px 15px 0;
}

/* Gestion des coins arrondis par ligne */
.volencours-table td:first-child {
    border-radius: 15px 0 0 15px;
}

.volencours-table td:last-child {
    border-radius: 0 15px 15px 0;
}


.volencours-table td {
    background-color: #f0f2f5;
    padding: 10px 5px;
    color: #32325d;
    font-size: 0.95rem;
    border: none;
    transition: transform 0.2s ease;
	text-align: center;
	vertical-align: middle;
}

.volencours-retard {
    background-color: #ff1010 !important;
    color: #fdfdfd !important;
    padding: 2px 7px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
}


/* Gestion des coins arrondis par ligne */
.volencours-table td:first-child {
    border-radius: 15px 0 0 15px;
}

.volencours-table td:last-child {
    border-radius: 0 15px 15px 0;
}

/* Effet au survol */
.volencours-table tr:hover td {
    background-color: #f0f2f5;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    cursor: pointer;
}

