.football-match-calendar {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
}

.top-match-highlight {
  background: linear-gradient(135deg, #3494E6, #EC6EAD);
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.top-match-card {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-match-card img {
  max-width: 100px;
  border-radius: 50%;
}

.match-calendar {
  display: grid;
  gap: 10px;
}

.match-card {
  background: #f4f4f4;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease;
}

.match-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
