/* Container fuer die Zeitleiste */
.timeline-container {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}

.timeline {
  position: relative;
  width: 80%;
  height: 10px;
  background-color: #e3e3e3;
  border-radius: 10px;
}

.date {
  position: absolute;
  top: 20px;
  font-size: 14px;
  font-weight: normal;
  color: #000000;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.start-date {
  left: 0;
  animation-delay: 0.5s;
}

.end-date {
  right: 0;
  animation-delay: 1s;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e3e3e3;
}

.progress {
  height: 100%;
  width: 0;
  background-color: #4a7db6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
