.event-list, .past-event-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px auto;
  max-width: 800px;
}

.past-event-header {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 1.8rem;
  color: #03dac6;
  text-shadow: 0 0 10px rgba(255, 64, 129, 0.8);
}

.event-header {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 1.8rem;
  color: #03dac6;
  text-shadow: 0 0 10px rgba(255, 64, 129, 0.8);
}

.event-item {
  display: flex;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease-in-out;
}

.event-item:hover {
  transform: scale(1.05);
}

.event-image {
  flex-shrink: 0;
}

.event-image img {
  width: 210px;
  height: 297px;
  border-radius: 8px;
  margin-right: 20px;
}

.event-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f5f5f5;
}

.event-title {
  font-size: 1.5rem;
  color: #03dac6;
  cursor: pointer;
}

.event-title:hover {
  color: #ff4081;
}

.additional-details {
  display: none;
  margin-top: 10px;
}

.additional-details.show {
  display: block;
}

.additional-details button {
  padding: 10px;
  background-color: #03dac6;
  border: none;
  border-radius: 4px;
  color: #000;
  cursor: pointer;
}

.additional-details button:hover {
  background-color: #ff4081;
}

