/* Tables */
.table-responsive {
    overflow-x: hidden; /* This will hide the horizontal scrollbar */
}

.table-white table th,
.table-white table td{
    background-color: var(--background-white-color); /* green background */
}

.table-none table th,
.table-none table td{
    background-color: var(--background-none-color); /* green background */
}

.table-success table th,
.table-success table td{
    background-color: var(--background-success-color); /* green background */
}

.table-danger table th,
.table-danger table td{
    background-color: var(--background-danger-color); /* red background */
}

.table-warning table th,
.table-warning table td {
    background-color: var(--background-warning-color); /* yellow background */
}