@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");






.gamesTableContainer {
    margin: auto;
    /*min-height: 50vh;*/
    overflow: hidden;
    width: 100%;
    padding: 0px;
}


table {
    /*border-collapse: collapse;*/
    width: 90%;
    border: 1px solid rgb(51, 0, 56);
    margin: 0px;
    padding: 0px;
    margin: auto;
}


table thead tr th button {
    color: white;
}


thead tr {
    border-bottom: 5px solid red;
    border-top: 5px solid red;
    height: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
}


th {
    font-weight: bold;
    height: inherit;
    padding: 0;
}


th:not(:first-of-type) {
  border-left: 1px solid rgb(51, 0, 56);
  border-left: 1px solid rgb(184, 1, 200);
}


th button {
    background: rgb(70, 1, 77);
    border: none;
    cursor: pointer;
    display: block;
    font: inherit;
    height: 100%;
    margin: 0;
    min-width: max-content;
    padding: 0.5 rem;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 100;
}


th button::after {
    position: absolute;
    right: 0.5rem;
}


th button[data-dir="asc"]::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpolygon points='0, 0 8,0 4,8 8' fill='%23818688'/%3E%3C/svg%3E");
}


th button[data-dir="desc"]::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpolygon points='4 0,8 8,0 8' fill='%23818688'/%3E%3C/svg%3E");
}


tbody tr {
    border-bottom: 1px solid rgb(51, 0, 56);
}


td {
    padding: 0.5rem;
    text-align: center;
    border: 1px solid rgb(51, 0, 56);
    color: rgb(245, 0, 143);
}



/*-------------------------------------------------------------------------------------------------*/
/* Media screens */
/*-------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 600px) {


    * {
        /*font-size: 0.9em;*/
    }

    .gamesTableContainer {
        font-size: 0.3em;
        overflow:scroll;
    }
}