.buducnost-schedule {
font-family: 'Oswald', sans-serif;
margin: 30px 0;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.schedule-month {
font-size: 1.8em;
margin-top: 30px;
color: #003b5c;
text-transform: uppercase;
border-bottom: 2px solid #003b5c;
padding-bottom: 10px;
text-align: center;
}
.schedule-month-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
margin-top: 20px;
}
.match {
background-color: #fff;
padding: 20px;
width: 100%;
max-width: 600px;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
margin-bottom: 20px;
border: 1px solid #e0e0e0;
}
.match:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.match-details {
margin-bottom: 15px;
text-align: center;
}
.match-date-time {
font-size: 1.1em;
font-weight: bold;
color: #333;
margin-bottom: 10px;
}
.match-venue {
font-size: 0.9em;
color: #555;
margin-top: 5px;
}
.venue-label {
font-weight: bold;
}
.league-info {
display: flex;
align-items: center;
justify-content: center;
margin-top: 10px;
gap: 10px;
}
.country-flag {
width: 24px;
height: 16px;
border: 1px solid #ddd;
border-radius: 3px;
}
.league-name {
font-size: 0.9em;
color: #555;
font-weight: bold;
}
.league-logo {
width: 24px;
height: 24px;
border-radius: 50%;
}
.match-teams {
display: flex;
align-items: center;
justify-content: space-between;
margin: 20px 0;
gap: 20px;
}
.team {
display: flex;
align-items: center;
flex-direction: column;
text-align: center;
flex: 1;
}
.team-logo {
width: 60px;
height: 60px;
margin-bottom: 10px;
object-fit: contain;
}
.team-name {
font-size: 1em;
color: #333;
font-weight: bold;
margin-top: 5px;
}
.vs {
font-size: 1.2em;
font-weight: bold;
color: #003b5c;
margin: 0 10px;
}
.match-score {
font-size: 1.5em;
font-weight: bold;
text-align: center;
color: #333;
background-color: #f0f0f0;
padding: 10px;
display: inline-block;
width: 100%;
margin: 0 auto;
}