
.timeline-container {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 100px 20px;
  padding-top:0px;
}

.timeline-line-wrapper {
  position: relative;
  width: 10px;
  margin-right: -6px;
}


.timeline-line-track {
  position: absolute;
  width: 10px;
  top: 0;
  bottom: 0;
background: linear-gradient(to bottom, #ddd 0%, #ddd 40%, #ddd 70%, #ffffff00 100%);
  z-index: 1;
  border-radius:75px;
}

.timeline-line-progress {
  position: absolute;
  width: 10px;
  top: 0;
  left: 0;
background: linear-gradient(to bottom, #07468e 50%,#af2eed 70%, #ffffff00 100%);
  z-index: 2;
  height: 0;
  transition: height 0.1s ease-out;
  border-radius:75px;
}

.timeline-dot {
  position: absolute;
  left: -3px;
  width: 8px;
  height: 8px;
  background: white;
  border: 0px solid #b02ded;
  border-radius: 50%;
  z-index: 3;
}

.timeline-entries {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.timeline-entry {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 40px; /* Space for dot/line */
  margin-bottom: 50px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  /* background: #ddd; */
}


.timeline-entry:last-child .timeline-marker {
  height: calc(100% - 7px); /* Prevents extra line below last dot */
}


.timeline-year {
  font-weight: bold;
  font-size: 1.25rem;
  color: #0d6efd;
}

.timeline-description {
  font-size: 1rem;
  color: #555;
}
