.last-match-container {
font-family: Poppins, 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;
flex-direction: column-reverse;
font-family: Poppins, sans-serif;
}
.country-flag {
width: 24px;
height: 16px;
border-radius: 3px;
}
.league-name {
font-size: 1.1em;
font-weight: bold;
color: #fff;
background-color: #D7B369;
padding: 8px 15px;
border-radius: 6px;
}
.league-logo {
width: 80px;
height: auto;
border-radius: 50%;
}
.match-date-time {
font-size: 1em;
color: #abb8c3;
}
.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: 100px;
height: auto;
margin-bottom: 10px;
object-fit: contain;
}
.team-name {
font-size: 1.1em;
font-weight: bold;
color: #fff;
}
.match-score {
font-size: 1.5em;
font-weight: bold;
color: #003b5c;
}
.match-venue {
font-size: 0.9em;
color: #abb8c3;
margin-top: 15px;
text-transform: uppercase;
}
.venue-label {
font-weight: bold;
}