Changing background gray color in table

Hi Knackers!

I'm not the best with CSS, aka just learning as I go and not doing the best job at it. I successfully changed the font of my app after reading countless community posts (but still having a problem with the font as users are writing in text boxes), but now I am looking to change my table views to appear all white instead of the every other row being gray. I went through some similar community posts and tried to piece it together, but it's still not working. Preferably, I would like to change all of my tables to be all white and no gray, but I believe my below code is just for a specific view I have.

Would anyone mind taking a look at the code I have and providing any feedback?

Thank you!!

.kn-content {

font-family: Arial, Helvetica, Sans-serif;

}

#view_36 .kn-table-table {
background-color:#ffffff !important;

}

using jquery:

$(document).on('knack-view-render.any', function(event, view,record) {
$('.kn-table.is-striped tbody tr:nth-child(even)').css('background-color', '#ffffff' )


});

or css

.kn-table.is-striped tbody tr:nth-child(even) {

background-color:#ffffff !important;

}

:)