#app_finish,
#app_highscore{
    display: none;
}

#app_finish h3,
#app_finish .user-name{
    font-size: 30pt;
    text-align: center;
    margin: 0;
}

#app_finish .user-name{
    font-size: 60pt;
}

#app_finish .score{
    font-size: 60pt;
    text-align: center;
    margin: 20px 0;
    color: var(--main-color);
}

#app_finish #user-informations,
.highscores{
    margin: 40px auto 100px;
    padding: 0;
    list-style: none;
    text-align: center;
}

#app_finish #user-informations li,
.highscores li{
    font-style: italic;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

#app_finish #user-informations li span,
.highscores li span,
.highlight{
    color: var(--main-color);
    font-weight: bold;
    font-style: normal;
    font-size: 1.25em;
}

.highscores{
    list-style: decimal;
}

.highscores li span{
    color: black;
    flex-basis: calc(100% / 3);
}

.highscores .highscore-user-name{
    text-align: left;
    font-weight: bold;
}

.highscores .highscore-user-score{
    text-align: right;
    font-weight: bold;
}

.highscores .highscore-user-date{
    text-align: right;
}

.refresh-highscores{
    background-color: gray;
    color: white;
}

.btn-refresh-wrap{
    position: relative;
}

.info-refresh{
    position: absolute;
    top: -50px; left: calc(50% - calc(250px * .5) - 20px);
    width: 250px;
    color: gray;
    padding: 10px 20px;
    opacity: 0;
}

ul.highscores,
ol.highscores{
    max-width: 500px;
}

table{
    max-width: auto;
    border: none;
    border-collapse: collapse;
    margin: 40px auto 100px;
}

table tbody tr td{
    padding: 20px;
}

table tbody tr:nth-child(even){
    background-color: #eaeaea;
}

table thead tr th{
    padding: 15px;
    background-color: black;
    color: white;
}