.next-match-container {
font-family: Arial, sans-serif;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
padding: 20px;
max-width: 600px;
margin: 0 auto;
text-align: center;
}
.match-header {
margin-bottom: 20px;
}
.league-info {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
margin-bottom: 15px;
}
.country-flag {
width: 24px;
height: 16px;
border-radius: 3px;
}
.league-name {
font-size: 1.1em;
font-weight: bold;
color: #333;
}
.league-logo {
width: 24px;
height: 24px;
border-radius: 50%;
}
.match-date-time {
font-size: 1em;
color: #555;
}
.match-date, .match-time {
display: block;
}
.match-teams {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
margin: 20px 0;
}
.team {
display: flex;
flex-direction: column;
align-items: center;
flex: 1;
}
.team-logo {
width: 60px;
height: 60px;
margin-bottom: 10px;
object-fit: contain;
}
.team-name {
font-size: 1.1em;
font-weight: bold;
color: #333;
}
.vs {
font-size: 1.5em;
font-weight: bold;
color: #003b5c;
}
.match-venue {
font-size: 0.9em;
color: #555;
margin-top: 15px;
}
.venue-label {
font-weight: bold;
}