/* Cambiare il colore dello sfondo */
.tabulator {
    background-color: #f0f0f0;
}

/* Modificare stile delle intestazioni di colonna */
.tabulator-col {
    background-color: #0044cc;
    color: #ffffff;
    font-weight: bold;
}

/* Cambiare il colore delle righe pari e dispari */
.tabulator-row:nth-child(even) {
    background-color: #ddd;
}
.tabulator-row:nth-child(odd) {
    background-color: #fff;
}

/* Modificare lo stile delle celle selezionate */
.tabulator-row .tabulator-cell {
    border: 1px solid #ccc;
    text-align: center;
}
.tabulator-row.tabulator-selected .tabulator-cell {
    background-color: #0099cc;
    color: white;
}

/* Cambiare il colore delle celle filtrate */
.tabulator-col-title {
    color: #333;
}

/* Modificare il colore dei filtri delle intestazioni */
.tabulator-header .tabulator-header-filter input,
.tabulator-header .tabulator-header-filter select {
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 5px;
}
