.kitSelector {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.filterer {
    width: 50%;
    justify-content: center;
    display: flex;
    margin-bottom: 15px;
}

.resultsBox {
    width: 40%;
    height: 400px;
    overflow-y: scroll;
    overflow-x: hidden;
    border-radius: 5px;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 900px) {
    .resultsBox {
        width: 90%;
    }
}

.result {
    width: 95%;
    background-color: #262424;
    border-color: transparent;
    margin-bottom: 0px;
    padding: 5px;
    border-radius: 5px;
}

.noResults {
    display: flex;
    width: 95%;
    flex-direction: column;
    background-color: #262424;
    border-color: transparent;
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 5px;
    align-items: center;
}

.result>span {
    font-size: 16px;
    padding: 2px;
    color: white;

}

.selectedKit {
    background-color: #559aad;
}

.statPicker {
    margin: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 25px;
    flex-wrap: wrap;
}

.leaderboard {

    width: 95%;
    height: 100%;
}


@media only screen and (max-width: 900px) {

    #leaderboardContainer {
        overflow-x: scroll;
    }
    .leaderboard {
        width: 100%;
        overflow-x: scroll;
    }
}

.leaderboard td:first-child {
    width: 5%;
}

.leaderboard td:nth-child(2):not(#header) {
    width: 30%;
    font-family: 'MinecraftWOFF';
    font-size: 20px;
}

#generated {
    margin-top: 0px;
    margin-bottom: 0px;
}