/* css/schedule.css */

.schedule-day {
  margin-bottom: 2em;
}

.schedule-day h2 {
  margin-bottom: 0.5em;
  font-size: 1.2em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.3em;
}

.schedule-game {
  display: grid;
  grid-template-columns: 70px 1fr 20px 1fr auto;
  align-items: center;
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
}

.schedule-game.alt-row {
  background: #f9f9f9;
}

.schedule-time {
  font-weight: bold;
  text-align: right;
  padding-right: 10px;
}

.schedule-home,
.schedule-away {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end; /* for home */
}

.schedule-away {
  justify-content: flex-start;
}

.schedule-vs {
  text-align: center;
  font-weight: bold;
}

.team-logo {
  width: 26px;
  height: 26px;
}

.schedule-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
