
.list-center {
    display: flex;
    justify-content: center;
}

.list-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 1000px) {
    .list-wrapper{
        width: 90vw;
    }
}

table {
    font-size: 2em;
    border-collapse: collapse;
}

tr {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--sacGray2);
}

tr:last-child {
    border-bottom: none;
}

.points {
    font-weight: 300;
}

td {
    color: var(--sacGray);
    padding-right: 0.5em;
    text-align: left;
}

th {
    color: var(--sacGray);
    font-weight: bold;
    text-align: left;
}

table tr td img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.img-cell {
    height: 90px;
}

td img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1000px) {
    table {
        font-size: 6vw;
        border-collapse: collapse;
    }

    table tr td img {
        width: 40px;
        height: 40px;
    }

    .img-cell {
        height: 50px;
    }
}