.stripedDiv a:nth-child(odd) {
    background-color: var(--light-grey) !important;
}

.stripedDiv a:nth-child(even) {
    background-color: var(--gray-7);
}

.stripedDiv a:first-child {
    border-top-left-radius: 5px;
}

.stripedDiv a:last-child {
    border-top-right-radius: 5px;
}

.stripedDiv a {
    text-decoration: none;
    color: var(--main-grey);
    flex-grow: 1;
}

.stripedDiv a:hover {
    color: var(--main-color);
}

.stripedDiv {
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap;
}

.tableStatistiche {
    background-color: var(--light-grey);
}

.tableStatistiche th,
.tableStatistiche td {
    font-weight: normal;
    padding: 5px;
    white-space: nowrap;
}

/* .tableStatistiche th:nth-child(16),
.tableStatistiche td:nth-child(16),
.tableStatistiche th:nth-child(17),
.tableStatistiche td:nth-child(17),
.tableStatistiche th:nth-child(18),
.tableStatistiche td:nth-child(18),
.tableStatistiche th:nth-child(19),
.tableStatistiche td:nth-child(19),
.tableStatistiche th:nth-child(20),
.tableStatistiche td:nth-child(20) {
    background-color: var(--gray-7);
} */

.tableStatistiche th:not(:nth-child(3)),
.tableStatistiche td:not(:nth-child(3)) {
    vertical-align: center;
    text-align: center;
}

.stats1 {
    background-color: var(--gray-7);
}

.stats2 {
    background-color: var(--main-light-color);
    color: white !important;
}

.stats3 {
    background-color: var(--second-dark-color);
    color: text-main-color !important;
}

.tableStatistiche {
    overflow-x: auto;
}

.tableStatistiche thead,
.tableStatistiche tbody,
.tableStatistiche tr,
.tableStatistiche td {
    width: 100% !important;
}

.tableStatistiche thead th {
    border-bottom: 2px solid var(--gray-7) !important;
}



.tableStatistiche thead th:not(:nth-child(3)),
.tableStatistiche tbody td:not(:nth-child(3)) {
    width: 30px !important;
}

/* .ruoloGiocatore {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.ruoloGiocatore {
    margin: 0;
    width: 20px;
    height: 20px;
    background-color: var(--main-color);
    color: white;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ruoloGiocatoreTrequartista {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(to top left, orange 50%, var(--main-color) 50%);
}

.ruoloGiocatoreTrequartista div {
    position: absolute;
    z-index: 1;
    line-height: 1;
    font-size: 10px;
}

.ruoloGiocatoreTrequartista>div:first-child {
    top: 2px;
    left: 1px;
}

.ruoloGiocatoreTrequartista>div:nth-child(2) {
    bottom: 1px;
    right: 3px;
}


/* MEDIA QUERIES */
@media screen and (max-width: 767px) {
    .nav-link {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        padding-right: 0.75rem;
        padding-left: 0.75rem;
        flex-grow: unset;
        width: 25px !important;
    }
}