:root{
    --bs-table-bg-type: var(#ffffff);
}

table.table-striped {
    width: 100%;
    border-collapse: collapse;
    font-family:'Courier New', Courier, monospace;
}

table.table-striped th,
table.table-striped td {
    border: none;
    padding: 8px 14px;
}

table.table-striped th {
    background-color: #F6F5F9;
    text-align: left;
} 

.table-striped > tbody > tr > * {
   color:#222A42;
}

.table-striped > tbody > tr:nth-of-type(2n) > * {
    background-color: #F6F5F9;
    
}
.table-striped > tbody > tr:nth-of-type(2n+1) > * {
    --bs-table-bg-type: #ffffff;
    background-color: #ffffff!important;
}


