table {
    border-collapse: collapse;
}
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}
thead {
    background-color: #b7bab0;
}
.table-bordered {
    border: 1px solid #dee2e6;
}
.table-bordered thead td, .table-bordered thead th {
    border-bottom-width: 2px;
}
.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}
.table-bordered td, .table-bordered th {
    border: 1px solid #dee2e6;
}
.table td, .table th {
    padding: 0.2rem 0.75rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
    vertical-align: middle;
}
.table-striped tbody tr:nth-of-type(even) {
    background-color: #b7bab0;
}