.match-boxes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.match-box {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.match-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.match-box-title {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--primary-color);
}

.match-date {
    font-size: 0.9em;
    color: var(--text-secondary);
}

.match-teams {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    text-align: center;
}

.match-result {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin: 8px 0;
    font-family: 'Score', monospace;
}

.match-result.upcoming-time {
    font-size: 1.2em;
    font-family: inherit;
    color: var(--text-secondary);
}

.team-opponent {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.match-location {
    font-size: 1.4em;
    cursor: help;
}

.match-league {
    text-align: center;
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-top: 10px;
}

.match-status {
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
    padding: 5px;
    border-radius: 4px;
}

.status-finished {
    background: var(--bg-medium);
    color: var(--text-primary);
}

.status-upcoming {
    background: var(--bg-medium);
    color: white;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
}

@media (max-width: 768px) {
    .match-boxes-container {
        grid-template-columns: 1fr;
    }
    
    .match-teams {
        font-size: 1.1em;
    }
    
    .match-score {
        font-size: 1.2em;
    }
}