body {
  font-family: sans-serif;
  background: #f4f6f8;
  padding: 20px;
}

.match-card {
  background: white;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.team {
  display: flex;
  align-items: center;
  gap: 8px;
}

.team img {
  height: 24px;
}

.score {
  font-size: 1.5rem;
  font-weight: bold;
}

.result {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #555;
}

.meta {
  font-size: 0.9rem;
  color: #888;
}