﻿#StatsTable {
    width: 100%;
    table-layout: fixed;
}

    #StatsTable thead {
        position: sticky;
        top: 0;
        background-color: white;
    }

    #StatsTable, #StatsTable td, #StatsTable th {
        border-style: solid;
        border-width: 1px;
        border-color: black;
        border-spacing: 0;
    }

        #StatsTable td, #StatsTable th {
            padding: 0.5vh;
        }

#StatsLegende {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 2vh;
    width: 100%;
}

.StatDataDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 0.5vh;
}

    .StatDataDiv span, #StatsLegende span {
        font-weight: bold;
    }

        .StatDataDiv span:first-of-type, #StatsLegende span:first-of-type {
            color: red;
        }

        .StatDataDiv span:nth-of-type(2), #StatsLegende span:nth-of-type(2) {
            color: green;
        }

        .StatDataDiv span:nth-of-type(3), #StatsLegende span:nth-of-type(3) {
            color: blue;
        }

        .StatDataDiv span:last-of-type, #StatsLegende span:last-of-type {
            color: black;
        }
