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