.custom-table {
    width: 100%;
    table-layout: fixed; /* Controlla la larghezza delle colonne */
}

.custom-table th,
.custom-table td {
    text-align: center; /* Allinea il testo al centro */
    padding: 10px; /* Spaziatura interna */
}

/* La prima colonna più larga */
.custom-table th:first-child,
.custom-table td:first-child {
    width: 35%;
}

/* Le ultime due colonne (date) più larghe */
.custom-table th:nth-last-child(3),
.custom-table td:nth-last-child(3),
.custom-table th:nth-last-child(2),
.custom-table td:nth-last-child(2) {
    width: 20%;
}

/* Le colonne rimanenti più strette */
.custom-table th:not(:first-child):not(:nth-last-child(3)):not(:nth-last-child(2)),
.custom-table td:not(:first-child):not(:nth-last-child(3)):not(:nth-last-child(2)) {
    width: 10%;
}
