.match_score_container {
    width: 100%;
    text-align: center;
    border-radius: 16px;
    display: flex;
    background: #2B2E3C;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px 8px;
}

.match_home_team_child, .match_away_team_child {
    width: calc(100% / 3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.match_score_child {
    width: calc(100% / 3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.match_team_logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.match_team_name {
    margin-top: 8px;
    height: 40px;
    color: #EEEEEE;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.match_score {
    text-align: center;
    color: #EEEEEE;
    font-weight: bold;
    font-size: 32px;
}

.match_live_score {
    text-align: center;
    color: #FF5252;
    font-size: 32px;
    font-weight: bold;
}

.match_status {
    color: #999999;
    font-size: 14px;
    margin-top: 4px;
}

.match_live_status {
    color: #FF5252;
    font-size: 14px;
    margin-top: 4px;
}

.match_date {
    color: #EEEEEE;
    font-size: 14px;
}

/* Jdwal Match Tab Card styling */
.match_tab_row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    white-space: nowrap;
    margin-bottom: 16px;
    padding: 8px 4px;
    scrollbar-width: none;
    gap: 8px;
}

.match_tab_row::-webkit-scrollbar {
    display: none;
}

.match_tab_item {
    background-color: #2B2E3C;
    border-radius: 8px;
    padding: 10px 14px;
    display: inline-block;
    color: #FFFFFF !important;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.match_tab_item:hover {
    background-color: #383C4E;
    color: #FFFFFF !important;
}

.match_tab_selected_item {
    background-color: #2B2E3C;
    color: #9ACCFA !important;
    font-weight: bold;
}