.content_buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    gap: 10px;
}

.button {
    background-color: var(--brown);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0.3;
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1);
    transition: 0.1s;
    user-select: none;
}

.button:hover {
    opacity: 1;
    transform: scale(1.04);
}

.button:active {
    transform: scale(1.06);
}

.button.active {
    opacity: 1;
}

.loading_display {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
}

.loading_display span {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.2);
}

.scoreboards {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 65vw;
    height: 60vh;
    background-color: var(--blue);
    padding: 15px;
    border-radius: 20px;
    flex-direction: column;
    display: flex;
    color: white;
    transition: .15s;
    opacity: 1;
    z-index: 5;
}

.list-container {
    flex: 1;
    overflow-y: scroll;
}
.list-container::-webkit-scrollbar {
    display: none;
}

.scoreboards.hidden {
    opacity: 0;
    user-select: none;
    z-index: -100;
}

.score,
.header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.score >*,
.header > * {
    font-size: 13px;
    cursor: default;
    flex: 1
}

.score_difficulty span {
    font-size: 20px;
}

.highscores {
    display: none;
    flex-direction: column;
    width: 20%;
    align-items: center;
}

.highscores .list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 0px 6px;
    cursor: default;
}

.trophy.highscores {
    border: 5px solid rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.05);
    position: absolute;
    left: 30px;
    top: 30%;
    width: 200px;
    border-radius: 15px;
    padding: 8px;
}

.results_section.highscores {
    display: flex;
}

.highscore_element {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    transform: scale(1);
    transition: .15s;
}

.highscore_element:hover{
    transform: scale(1.05);
}

.small_divider {
    width: 95%;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.2);
    margin: 10px 0px;
}