/* Filter Buttons */
.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
    justify-content: center;
}

.filter-button {
    padding: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    background: #e0e1e2;
    border: none;
    border-radius: 7px;
}

/* Table */
table {
    width: auto;
    margin: 20px auto 0;
    border-collapse: collapse;
    font-size: 15px;
    border: 1px solid #000;
}

th, td {
    padding: 5px;
    text-align: center;
    border: 1px solid grey;
}

td {
    width: 80px;
    height: 70px;
}

/* Desktop */
@media (min-width: 1024px) {
    table {
        width: 50% !important;
        margin: 0 auto !important;
    }
}
