/* Estilos básicos de la tabla */
.google-sheet-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
    background-color: #ffffff !important;
    border: none !important;
}
 
/* Encabezado de la tabla */
.google-sheet-table thead tr {
    background-color: #ffffff !important;
    text-align: left;
    font-weight: bold;
}
 
/* Bordes y relleno de las celdas */
.google-sheet-table th, .google-sheet-table td {
    border: none !important;
    padding: 12px 15px;
    background-color: #ffffff !important;
}
 
/* Fila impar de la tabla */
.google-sheet-table tbody tr:nth-of-type(odd) {
    background-color: #ffffff !important;
}
 
/* Fila par de la tabla */
.google-sheet-table tbody tr:nth-of-type(even) {
    background-color: #ffffff !important;
}
 
/* Hover sobre las filas */
.google-sheet-table tbody tr:hover {
    background-color: #ffffff !important;
}