body {
    padding: 0;
    margin: 0;
    background: rgba(50, 50, 50, 1);
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh; */
    margin-top: 10px;
    margin-bottom: 10px;
    flex-direction: column;
}

table {
    font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
    font-size: 14px;
    border-radius: 10px;
    border-spacing: 0;
    text-align: center;
}

caption {
    color: white;
    margin-bottom: 7px;
    font-size: 20px;
}

th {
    background: rgba(255, 137, 0, 0.9);
    padding: 10px 20px;
    color: rgba(129, 69, 0, 1);
}

th,
td {
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: rgba(0, 0, 0, 0.1);
}

th:first-child {
    border-top-left-radius: 5px;
}

th:last-child {
    border-top-right-radius: 5px;
    border-right: none;
}

th:first-child,
td:first-child {
    padding: 7px 8px;
}

td {
    padding: 7px 20px;
    background: rgba(230, 230, 230, 1);
    color: rgba(0, 0, 0, 0.6);
}

.player td {
    color: rgba(0, 0, 0, 1.0);
    font-weight: bold;
    background: rgba(215, 215, 215, 1);
    color: rgba(0, 0, 0, 0.8);

}

tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
}

tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
}

tr td:last-child {
    border-right: none;
}

/* Custom */

.btn_add_score {
    color: white;
    background-color: rgba(40, 40, 40, 1);
    font-size: 20px;
    width: 200px;
    margin-top: 10px;
}

.btn_add_score_small {
    color: white;
    background-color: rgba(40, 40, 40, 1);
    font-size: 20px;
    //width: 200px;
    margin-top: 10px;
}


.btn_show_more {
    color: white;
    background-color: rgba(40, 40, 40, 1);
    padding: 3px;
    width: 200px;
    margin-top: 10px;
}

#add_score {
    color: white;
    background-color: rgba(40, 40, 40, 1);
}

h1,
h2,
h3 {
    text-align: center;
    color: white;
    font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
    margin-bottom: 0px;
}

.bottom-right {
    right: 5px;
    position: fixed;
    bottom: 2px;
    color: rgba(160, 160, 160, 1);
}

.wrapper table tbody tr:nth-child(n+6) {
    display: none;
}