.ysf-stats-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.ysf-stats-match {
    background: transparent;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 15px;
}

.ysf-stats-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 0;
    border-bottom: 1px solid #666666;
    padding-bottom: 6px;
}

.ysf-stats-date {
    color: #999999;
    font-size: 0.9em;
}

.ysf-stats-league {
    color: #17B0FA;
    font-weight: bold;
}

.ysf-stats-header-info {
    display: flex;
    align-items: center;
}

.ysf-stats-league img {
    height: 30px;
    width: auto;
}

.ysf-stats-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.ysf-stats-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.ysf-stats-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    padding: 2px;
}

.ysf-stats-team-name {
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
}

.ysf-stats-score {
    font-size: 1.5em;
    font-weight: bold;
    padding: 0 15px;
    background: #333333;
    color: #ffffff;
    border-radius: 5px;
    min-width: 80px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 600px) {
    .ysf-stats-teams {
        flex-direction: column;
        gap: 10px;
    }
    
    .ysf-stats-team {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .ysf-stats-logo {
        width: 40px;
        height: 40px;
        margin-bottom: 5px;
    }
    
    .ysf-stats-team-name {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    
    .ysf-stats-score {
        order: 0;
        width: auto;
        text-align: center;
        margin: 0 10px;
        background: #333333;
        color: #ffffff;
        padding: 5px 10px;
        font-size: 1.2em;
    }

    .ysf-stats-teams {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .ysf-stats-team {
        flex: 0 0 auto;
        width: auto;
    }

    .ysf-stats-team:first-child {
        margin-right: auto;
    }

    .ysf-stats-team:last-child {
        margin-left: auto;
    }
} 