/* ===================   TABLE   =================== */
.opacity-70 {
    opacity: 0.60;
}

.team-data {
    display: flex;
    flex-direction: column;
    p {
        margin: 0;
    }
}

.match-date {
    margin-block: auto;
    display: flex;
    align-items: center;
    min-height: 42px;
}

.team-data-wrapper {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    .team-data-name {
        font-weight: 600;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

.team-elo-dynamic-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;


    .elo-dynamic {
        width: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        p {
            min-width: 33px;
            margin: 0;
        }
        span {
            text-align: right;
        }
    }
}

.team-score {
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    /*gap: 4px;*/
    padding: 0 4px;
    border-radius: 4px;
    width: 32px;
    background: rgba(234, 234, 234, 0.6);
    justify-content: space-between;
    .divider {
        width: 100%;
        border-bottom: 1px solid #b1b1b1;
    }
    p {
        margin: 0;
        color: #838383;
    }
}

@media (max-width: 1200px) {
    .team-data-wrapper {
        max-width: 180px;
    }
}

@media (max-width: 758px) {
    .team-data-wrapper {
        max-width: 180px;
        .team-data-name {

            font-weight: 400;
        }
    }
}

@media (max-width: 576px) {
    .team-data-wrapper {
        max-width: 120px;
    }

    .team-elo-dynamic-wrapper {
        .elo-dynamic {
            width: 60px;
            gap: 4px;
            p {
                min-width: 27px;
            }
        }
    }


}

