body {
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #f0f2f5;
  color: #333;
}

.container {
  background-color: #fff;
  padding: 35px 45px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px; /* Slightly wider for timeline */
  width: 90%;
  box-sizing: border-box;
}

h1 {
  color: #2c3e50;
  margin-bottom: 25px;
  font-size: 2.2em;
}

#main-event-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #34495e;
  margin-bottom: 10px;
}

#event-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 25px;
}

#days-display {
  font-size: 4.8em;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 40px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.small-text {
  font-size: 0.95em;
  color: #777;
  margin-top: -20px;
  margin-bottom: 30px;
}

#last-updated-date {
  font-weight: bold;
  color: #555;
}

/* Timeline specific styles */
.timeline-section {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 30px;
  text-align: left; /* Align timeline text left */
}

.timeline-section h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.8em;
  text-align: center;
}

#timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#timeline-list li {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

#timeline-list li:last-child {
  margin-bottom: 0;
}

#timeline-list li .timeline-date {
  font-weight: bold;
  color: #3498db;
  margin-bottom: 5px;
  font-size: 0.95em;
}

#timeline-list li .timeline-description {
  color: #555;
  font-size: 1em;
  line-height: 1.4;
}
