table {
    width: 100%;
    border-spacing: 0;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid var(--table-border-color);
}

table th {
    background: var(--table-heading-background-color);
    color: var(--table-heading-color);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    border-left: 1px solid var(--table-border-color);
}

table td {
    text-align: center;
    border-bottom: 1px solid var(--table-border-color);
    border-left: 1px solid var(--table-border-color);
}

table tr:nth-child(even) {
    background: var(--table-even-background-color);
}

table tr:nth-child(odd) {
    background: var(--table-odd-background-color);
}

table tr td:first-child {
    border-left: 0;
}

table tr:last-child td {
    border-bottom: 0;
} 

table th,
table td {
    padding: 15px 15px;
}

@media only screen and (max-width: 991px) {
    .scrollable {
        max-width: 100%;
        margin: auto;
        overflow-x: auto;
    }
}


