.match-list {
    display: flex;
    flex-direction: column;
}

.match-card {
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    /* height: 90px; */
}

.team {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.team-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo img {
    max-width: 90%;
}

.team-name {
    font-weight: 500;
    font-size: 11px;
    color: #fff;
}

.score-container {
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.score {
    font-size: 20px;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
    color: #fff;
}

.score-hidden {
    font-size: 20px;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
    color: #fff;
}

.percent {
    font-size: 10px;
}

.percent-hidden {
    font-size: 10px;
}

.score-divider {
    font-size: 16px;
    color: #999;
}

.score-div {
    border-left: solid 1px #ccc;
    padding-left: 8px;
}

.team-left {
    text-align: right;
    justify-content: flex-end;
}

.team-right {
    text-align: left;
    justify-content: flex-start;
    flex-direction: row-reverse;
}

.team-top {
    justify-content: space-between;
}

.team-bottom {
    justify-content: space-between;
}


.match-date {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .team-name {
        font-size: 12px;
    }

    .team-logo {
        width: 25px;
        height: 25px;
    }

    .score {
        font-size: 18px;
    }
}