.match-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    overflow: hidden;
}

.match-header {
    background-color: #ff9945;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 15px;
    border-bottom: 1px solid #cbdff0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.match-header > div {
    flex: 1;
    display: flex;
    align-items: center;
    white-space: nowrap;
    min-width: 0;
}

.match-header .left {
    justify-content: flex-start;
    text-align: left;
}

.match-header .center {
    justify-content: center;
    text-align: center;
}

.match-header .right {
    justify-content: flex-end;
    text-align: right;
}

.match-body {
    display: flex;
    flex-direction: row;
    position:relative;
}

.match-hr-separator{
    border: none;
    border-bottom: 1px solid #efefef;
    margin: 0;
    width: calc(100% - 34px);
}

.players {
    flex: 1;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
}

.player-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
}

.player-row:last-child {
    border-bottom: none;
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-info img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.player-name {
    color: #787878;
    font-size: 14px;
    line-height: 1.2;
}

.player-subtext {
    font-weight:none;
    font-size: 11px;
    color: #aaa;
    margin: 2px 0 0 8px;
}

.score {
    font-family: Arial, sans-serif;
    display: grid;
    grid-auto-flow: column;
    gap: 6px;
    color: #787878;
    font-size: 14px;
    white-space: nowrap;
    padding: 0 3px 0 3px;
    justify-content: center;
}

.score span {
    width: 14px;
    text-align: center;
    justify-content: center;
}

.score-wo {
    font-family: Arial, sans-serif;
    text-align: center;
    font-size: 14px;
    padding-right:5px;
}

.arrow-column {
    width: 40px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 5px;
    top: calc(50% - 13px);
}

.arrow-link {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('https://rankingonline.com.br/sites/s/images/left_arrow_02.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    filter: grayscale(50%);
    opacity: 0.5;
}

.arrow-link:hover {
    opacity: 0.8;
}

.winner .player-name {
    // font-weight: 600;
    color: #27ae60;
}


.winner{
    color: #27ae60;
    // font-weight: 600;
}

@media (max-width: 360px) {
    .match-header {
        flex-direction: column;
        align-items: stretch;
    }

    .match-header > div {
        justify-content: center !important;
        text-align: center !important;
    }

    .match-body {
        flex-direction: column;
        position:relative;
    }

    .player-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .score {
        justify-content: flex-start;
        margin-top: 4px;
    }

    .arrow-column {
        width: 100%;
        justify-content: center;
        padding: 10px 0;
        border: 1px solid #dddddd;
        position:relative;
    }
}
