.schedule-wrapper {
  width: 100%;
  justify-content: center;
}

.event-card {
  border-left: 4px solid #FFD700;
  margin-bottom: 1rem;
  margin-left: 6%;
  margin-right: 6%;
  transition: transform 0.2s;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 90%;
}

.date-box {
  background-color: #FFD700;
  padding: 1rem;
  text-align: center;
  width: 80px;
}

.date-number {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}

.date-month {
  text-transform: uppercase;
  font-size: 0.8rem;
}

.event-title {
  color: #000;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.event-description {
  margin-top: 0.5rem;
  color: #444;
}

.event-card:hover {
  transform: translateX(10px);
}

.date-box {
  background-color: #FFD700;
  color: black;
  padding: 1rem;
  text-align: center;
  border-radius: 8px;
  width: 100px;
}

.date-number {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

div.date-month {
  text-transform: uppercase;
  font-size: 0.9rem;
}

.event-info {
  padding: 1rem;
}

.event-title {
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.event-details {
  color: #666;
  font-size: 0.9rem;
}

.event-details i {
  color: #FFD700;
  margin-right: 0.5rem;
}

div.event-description {
  margin-top: 0.5rem;
  color: #444;
}

* {
  outline: none;
}

* {
  box-sizing: border-box;
}

