/*  ====================================================================================================
    "table" part
    ==================================================================================================== */

section.leaderboards .table * {
    border: 1px solid var(--white);
}

section.leaderboards .table table tr td:last-child {
    text-transform: capitalize;
}

/* ---------------------------------------------------------------------------------------------------- */

section.leaderboards .table table th:nth-child(1) {
    width: 100px;
    color: #bdbdbd;
}

section.leaderboards .table table th:nth-child(2) {
    color: var(--green);
}

section.leaderboards .table table th:nth-child(3) {
    color: var(--red);
}

section.leaderboards .table table th:nth-child(4) {
    color: var(--yellow);
}

section.leaderboards .table table th:nth-child(5) {
    color: var(--blue);
}

/* ---------------------------------------------------------------------------------------------------- */

section.leaderboards .table table tr:nth-child(odd) td:nth-child(1) {
    background-color: #4a4a4a;
}

section.leaderboards .table table tr:nth-child(odd) td:nth-child(2) {
    background-color: #2d7c40;
}

section.leaderboards .table table tr:nth-child(odd) td:nth-child(3) {
    background-color: #bd4856;
}

section.leaderboards .table table tr:nth-child(odd) td:nth-child(4) {
    background-color: #bb8546;
}

section.leaderboards .table table tr:nth-child(odd) td:nth-child(5) {
    background-color: #006a91;
}