.leaderboard-gamename {
    width: 300px;
    position: relative;
    display: block;
    margin: auto;
    margin-top: 100px;
}

.leaderboard-container {
    width: 100%;
    max-width: 1000px;
    position: relative;
    height: fit-content;
    margin: auto;
    margin-top: 80px;
    color: #fff;
    padding: 30px;
}

.leaderboard-frame {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    pointer-events: none;
    user-select: none;
}

.leaderboard--title {
    font-size: 35px;
    display: block;
    margin: auto;
    margin-top: 20px;
    font-family: 'Stoke', serif;
    text-transform: uppercase;
    cursor: default;
    user-select: none;
    width: fit-content;
}

.leaderboard--seperator {
    display: block;
    width: calc(100% - 20px);
    max-width: 400px;
    margin: auto;
    margin-top: 0;
}

.leaderboard-des {
    display: block;
    font-size: 12px;
    cursor: default;
    margin-top: 15px;
    width: 100%;
    text-align: center;
}

.leaderboard-table-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    margin-top: 15px;
}

#leaderboard--table {
    min-width: 100% !important;
}

#leaderboard--table thead,
.leaderboard th {
    background-color: transparent !important;
}

.leaderboard th,
.leaderboard td {
    border-bottom: none;
    white-space: nowrap;
    text-align: center;

}

.leaderboard tr {
    background: linear-gradient(to right, #191919, #020202) !important;
    border: 3px solid #020202;
}

.leaderboard td.rank {
    font-size: 20px;
    font-weight: bold;
    padding-left: 0;
    font-family: 'Stoke', serif;
}

.leaderboard td:nth-child(3),
.leaderboard th:nth-child(3) {
    text-align: left;

    display: flex;
    align-items: center;
    gap: 10px;
}

.leaderboard td img {
    margin-right: 0;
}

.leaderboard-select-page {
    display: flex;
    gap: 7px;
    margin: auto;
    margin-top: 25px;
    width: fit-content;
}

.leaderboard-select-page button {
    border: none;
    background-color: #363732;
    color: #fff;
    font-size: 14px;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
}

.leaderboard-select-page button:hover {
    background-color: #7d7d7d;
    color: #000;
}

.page-selected {
    background-color: #7d7d7d !important;
    color: #000 !important;
}

.button-disabled {
    background-color: #484944 !important;
    color: #1d1d1d !important;
}