.schedule {
  background: #111;
  text-align: center;
}

.schedule-card {
  max-width: 500px;
  margin: auto;
  background: #000;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #222;
  font-size: 16px;
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row span:first-child {
  color: #ccc;
}

.schedule-row span:last-child {
  font-weight: bold;
  color: #3A66A3;
}

.schedule-row.weekend span:last-child {
  color: #888;
}