body {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  line-height: 1.4;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.timeline-node.active {
  background-color: #00B612;
}

.timeline-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.timeline-node {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px; 
  height: 30px; 
  border-radius: 15px; 
  background-color: #1e90ff;
  color: #ffffff;
  cursor: pointer;
  padding: 2px 10px; 
  font-size: 14px; 
}

.demo-node {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 30px;
  border-radius: 15px;
  background-color: orange;
  color: #ffffff;
  cursor: pointer;
  position: absolute;
  padding: 2px 10px; 
  font-size: 14px;
  top: 10px;
  right: 10px;
}

.event-container {
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.event-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}
.event-table img {
  width: 100%;
  max-width: 550px;
}

.event-section {
  display: flex;
  flex-wrap: wrap;
}

.event {
  display: none;
  padding: 20px;
  margin-bottom: 10px;
  background-color: #f0f0f0;
  border-radius: 4px;
  font-size: 22px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.event h3 {
  margin-bottom: 10px;
}

.event h5 {
  text-align: left;
}
.event:first-of-type {
  display: block;
}

.event ul {
  list-style-type: disc;
  padding-left: 1em;
}

.event-content {
  display: none;
}

.header:nth-child(1) {
  grid-column: 1 / span 3;
}

.padding
{
  padding: 10px;
}


.stage-container {
  display: flex;
}

.stage-text {
  flex: 4; /* Takes 50% of the space */
  padding-right: 20px;
}

.stage-image {
  flex: 3; /* Takes 50% of the space */
  padding: 10px;
  box-sizing: border-box;
}

.stage-image img {
  width: 100%;
  height: auto;
}


.image-container {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
}

.image-container img {
  max-width: 45%;
  margin: 1%;
  max-height: auto
}




