


/* ************************ */
/* LEAGUE TABLE */
/* ************************ */
.leagueTable {
    font-family: var(--font);
}

.leagueTable.mini {
    max-width: 360px;
}


.titleRow {
    background-color: #ff6e15;
    font-size: 25px;
    color: #fff;
    padding: 6px;
    height: 48px;
    border-bottom: solid 1px #fff;
    line-height: 1.4;
    font-weight: bold;
}

.winnerLogo {
    margin-bottom: 7px;
}

.headersRow {
    display: grid;
    /* grid-template-columns: 4% 12% 8% 8% 6% 6% 6% 8% 9% 9% 12% 12%; */
    grid-template-columns: 4% auto 8% 6% 6% 6% 8% 9% 9% 12% 12%;
    font-size: 15px !important;
    color: #141614;
    font-weight: bold;
    background-color: #b9bbb8;
}

.headersRow.mini {
    /* grid-template-columns: 10% 35% 10% 10% 10% 10% 15%; */
    grid-template-columns: 10% auto 10% 10% 10% 15%;
}

.headersRow>div {
    padding: 6px;
    border-left: solid 1px #fff;
}

.headersRow.mini>div {
    border-left: none;
    padding: 0px 6px;

}

.teamRow {
    display: grid;
    /* grid-template-columns: 4% 12% 8% 8% 6% 6% 6% 8% 9% 9% 12% 12%; */
    grid-template-columns: 4% auto 8% 6% 6% 6% 8% 9% 9% 12% 12%;
    font-weight: bold;
    font-size: 14px;
}

.teamRow.mini {
    /* grid-template-columns: 10% 35% 10% 10% 10% 10% 15%; */
    grid-template-columns: 10% auto 10% 10% 10% 15%;
}

.teamRow:hover {
    background-color: #cecece !important;
}

.teamRow>div {
    border-left: solid 1px #fff;
    padding: 2px 7px;
}

.teamRow.mini>div {
    border-left: none;
    padding: 0px 7px;

}

.teamRow>.diff {
    direction: ltr;
}

.teamRow.redBorder {
    border-bottom: 3px solid red;
}

.teamRow.bg {
    background-color: #f1f1f1;
}

.toFullTable {
    width: 100%;
    background-color: #141614;

}

.toFullTable>a {
    width: 100%;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 5px 0px;
}






@media only screen and (max-width: 600px) {

    .leagueTableContainer {
        overflow: scroll;
        width: 100%;
    }

    .leagueTable {
        width: 1350px;
    }

    .leagueTable.mini {
        max-width: 360px;
    }
}