.tables {
    display: grid;
    grid-template-columns: repeat(auto-fill, 200px);
    gap: 20px;
    justify-content: center;

    max-width: 1320px;

    list-style-type: none;

    padding: 0;
    margin: 0 auto;
}

.table {
    width: 200px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: 0.5s all;
}

.table a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.table:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
