#tables-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    width: 92%;
    gap: 25px;
}

td.gold {
    background-color: #CCAB00;
    border: 1px solid #CCAB00;
    color: white;
    font-weight: bold;

}

td.silver {
    background-color: #557177;
    border: 1px solid #557177;
    border: none;
    color: white;
    font-weight: bold;
}

td.bronze {
    background-color: #cd7f32;
    border: 1px solid #cd7f32;
    border: none;
    color: white;
    font-weight: bold;
}

.stat-table {
    width: 25%;
}

.stat-name-th {
    background-color: white;
    color: black;
    padding: 15px;
    font-size: 1.286rem;
    font-weight: 900;
}

.row-name-tr {
    background-image: linear-gradient(to right, #50c7da, #2b9df1);
    color: white;
}

td a {
    color: black;
    text-decoration: none;
    transition: 0.1s ease-in;
}

td a:hover {
    color: #555;
    text-decoration: underline;
}

