.table {
    margin: auto;
    width: 80%;
    overflow-x: auto;
}

.table__header {
    background-color: rgb(68, 75, 72);
    color: white;
    text-align: center;
    font-weight: bolder;
    text-shadow: 1px 1px 2px rgb(82, 6, 6);
    padding: 15px;
}

.table__cell {
    padding: 15px;
    text-align: center;
}

.table__caption {
    caption-side: bottom;
    text-align: right;
    margin-top: 10px;
}

.table__row:nth-child(even) {
    background: rgb(16, 21, 23);
}

.table__cell:hover {
    background-color: #2C3338;
}

.table__header:hover {
    background-color: rgb(88, 97, 93);
}