/* Colorful Style */
.schedule-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans CJK JP", sans-serif;
  background: #fafafa;
  min-height: 100vh;
}

.event-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 900px) {
  .event-cards {
    grid-template-columns: 1fr 1fr;
  }
}

body {
  margin: 0;
  background: #fafafa;
}

.schedule-title {
  text-align: center;
  color: #e91e63;
  margin-bottom: 30px;
}

.event-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
}

.event-date {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  padding: 15px 20px;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.event-details {
  margin: 0;
  display: grid;
  grid-template-columns: 70px 1fr;
}

.event-details dt {
  font-weight: bold;
  margin-bottom: 0;
  padding: 12px 15px;
  display: block;
}

.event-details dd {
  margin-left: 0;
  margin-bottom: 0;
  padding: 12px 15px;
  color: #333;
  display: block;
}

.event-details dd a {
  color: #e91e63;
  text-decoration: none;
  font-weight: 500;
}

.event-details dd a:hover {
  text-decoration: underline;
}

/* Row colors - pastel rainbow */
.event-details dt:nth-of-type(1) { background: #ffb3ba; color: #a02040; }
.event-details dd:nth-of-type(1) { background: #ffdfdf; }
.event-details dt:nth-of-type(2) { background: #ffdfba; color: #a06020; }
.event-details dd:nth-of-type(2) { background: #fff4e6; }
.event-details dt:nth-of-type(3) { background: #ffffba; color: #808020; }
.event-details dd:nth-of-type(3) { background: #ffffd6; }
.event-details dt:nth-of-type(4) { background: #baffc9; color: #208040; }
.event-details dd:nth-of-type(4) { background: #e6ffe6; }
.event-details dt:nth-of-type(5) { background: #bae1ff; color: #2060a0; }
.event-details dd:nth-of-type(5) { background: #e6f4ff; }