.table-container {
    margin:auto;
    margin-bottom:20px;
    max-width: 80%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.table thead {
    background-color: #f9f9f9;
    font-weight: bold;
}

.table tbody tr:nth-child(even) {
    background-color: #807d7d;
}

.table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.table th,
.table td {
    text-align: center;
    vertical-align: middle;
    padding: 15px;
}

@media (max-width: 767px) {
    .table th,
    .table td {
        padding: 10px;
        font-size: 0.9rem;
    }
}