* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  line-height: 1.6;
  padding: 10px;
}

main {
  max-width: 1000px;
  margin: 0 auto;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.match-day {
  text-align: center;
  font-weight: bold;
  margin: 1rem 0;
  font-size: 1.2rem;
}

.match-list {
  width: 100%;
  border-collapse: collapse;
}

.match-item {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #c0c0c0;
  margin-bottom: 10px;
  padding: 10px;
}

.match-teams {
  flex: 1 1 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-weight: bold;
}

.match-info {
  flex: 1 1 50%;
  padding: 5px 0;
}

.match-info span {
  display: block;
  font-size: 0.9rem;
  color: #555;
}

@media (min-width: 600px) {
  .match-item {
    display: table-row;
    border: none;
  }

  .match-teams,
  .match-info {
    display: table-cell;
    padding: 8px;
    border: 1px solid #c0c0c0;
    text-align: center;
  }

  .match-teams {
    flex: none;
    margin-bottom: 0;
  }
}
