body {
    overflow: hidden;
}
body, button, input{
    font-family: 'Noto Sans', sans-serif;
}
.highscore-item {
    display: flex;
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    color: white;
}

.highscore-item:hover {
    color: #d4bb3f;
}
.highscore-item .rank{
    -webkit-box-flex: 0;
    max-width: 10%;
    flex: 0 0 10%;
}
.highscore-item .name{
    -webkit-box-flex: 0;
    max-width: 50%;
    flex: 0 0 50%;
}
.highscore-item .kills{
    -webkit-box-flex: 0;
    max-width: 15%;
    flex: 0 0 15%;
    text-align: right;
    color: #d4bb3f;
}
.highscore-item .score{
    -webkit-box-flex: 0;
    max-width: 25%;
    flex: 0 0 25%;
    text-align: right;
}

.highscore-item .kills-header{
    -webkit-box-flex: 0;
    max-width: 15%;
    flex: 0 0 15%;
    text-align: right;
    font-weight: bold;
    color: yellow;
}
.highscore-item .score-header{
    -webkit-box-flex: 0;
    max-width: 25%;
    flex: 0 0 25%;
    text-align: right;
    font-weight: bold;
    color:aquamarine;
}
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border-radius: .2rem;
    padding: .25rem .5rem;
    font-size: 1rem;
    line-height: 1.5;
    cursor: pointer;
}

.btn.highscore-btn {
    color: #ffffff;
    background-color: rgba(255,255,255,0);
    border-color: rgba(255,255,255,0);
    width: 60px;
    font-size: 13px;
    font-weight: bold;
    padding: 5px;
    line-height: 1;
}
.btn.highscore-btn:hover{
    background-color: rgba(255,255,255,.3);
    border-color: rgba(255,255,255,.3);
}
.btn.highscore-btn.active {
    background-color: #4bc0c0;
    border-color: #4bc0c0;
}
.btn.highscore-btn.active:hover {
    background-color: #4bc0c0;
    border-color: #4bc0c0;
}

#connectingToServer {
    color: rgba(255,255,255,.8);
    font-size: 13px;
    text-align: center;
}

.ellipsis {
    text-overflow: ellipsis;
  
    /* Required for text-overflow to do anything */
    white-space: nowrap;
    overflow: hidden;
  }

hr{
    border-width: .5px;
    margin-block-start: 0.2em;
    margin-block-end: 0.2em;
    border-color: rgba(255,255,255,.5);
}