/* Estilos básicos de la tabla */
.google-sheet-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0px 0;
    text-align: left;
}

/* Encabezado de la tabla */
.google-sheet-table thead tr {
    background-color: transparent;
    text-align: left;
    font-weight: normal;
}

/* Bordes y relleno de las celdas */
.google-sheet-table th, .google-sheet-table td {
    padding: 1px 1px;
}

/* Fila impar de la tabla */
.google-sheet-table tbody tr:nth-of-type(odd) {
    background-color: transparent;
    color: #00bf63;
    font-weight: bold;
}

/* Fila par de la tabla */
.google-sheet-table tbody tr:nth-of-type(even) {
    background-color: transparent;
    font-weight: bold;
    color: #231f20;
}