div.gameTimeLineGraphHolder {
    position: absolute;
    width: 1500px;
    height: 730px;
    left: 220px;
    top: 10px;
    padding: 10px;
}

div.gameTimeLineButtons {
    position: absolute;
    width: 200px;
    height: 750px;
    left: 10px;
    top: 10px;
}

div.gameTimeLineButtons button:hover {
    background-color: rgb(53, 89, 90);
}

div.gameTimeLineButtons button {
    width: 90%;
    margin-left: 5%;
    color: black;
    font-size: 30px;
    padding: 5px;
    margin-top: 5px;
    background-color: cadetblue;
}

div.gameStatisticsHolder {
    display: block;
    position: absolute;
    width: 1850px;
    height: 1000px;
    margin-left: 30px;
    margin-top: 20px;
    border: 5px solid white;
    border-radius: 20px;
}

p.gameStatisticsTitle {
    font-size: 50px;
    position: absolute;
    width: 100%;
    text-align: center;
}

div.gameStatisticsTabs {
    width: 80%;
    position: absolute;
    left: 10%;
    border: 3px solid cornflowerblue;
    height: 85px;
    font-size: 60px;
    top: 60px;
    border-radius: 10px;
    padding: 20px;
}

div.gameStatisticsTabs button{
    width: 200px;
    height: 90%;
    font-size: 38px;
    margin: 1px;
    margin-top: -15px;
    position: absolute;
    background-color: darkcyan;
    border: 1px solid white;
}

div.gameStatisticsTabs button:hover {
    background-color: rgb(1, 66, 66);
}

button.closeStatisticsButton img {
    width: 82px;
    height: 82px;
    margin-top: -8px;
    margin-left: -8px;
    background-color: #00000000;
}

button.closeStatisticsButton {
    background-color: #0ebf62;
    height: 70px;
    width: 70px;
    position: absolute;
    top: 10px;
    right: 10px;
}

div.gameStatisticTab {
    display: block;
    position: absolute;
    width: 1755px;
    background-color: #3a3a3a;
    left: 2.5%;
    top: 205px;
    height: 770px;
    border: 1px solid cornflowerblue;
    border-radius: 20px;
}

table.playerStatisticsTable {
    position: absolute;
    width: 95%;
    left: 2.5%;
    top: 10px;
    font-size: 36px;
    /* border: 1px solid white; */
}

table.playerStatisticsTable tr{
    
    text-align: center;
}

tr.statisticsPlayerRow td {
    padding: 10px;
    color: black;
    font-weight: 900;
}

tr.playerStatisticsHeader th {
    max-width: 16%;
}

p.statistic_game_runden_counter {
    font-size: 50px;
    width: max-content;
}

div.innerGameStatisticsTab {
    /* display all childs flex and centered on in this div */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 98%;
    height: 96%;
    margin-left: 1%;
    margin-top: 1%;
    background-color: #00000000;

}