.timeline-container {
  width: 80%; /* Of een andere gewenste breedte */
  max-width: 800px; /* Maximale breedte voor grote schermen */
  margin: 3em auto 0 auto; /* Centreren en ruimte boven en onder */
  position: relative;
  padding-left: 50px; /* Ruimte voor de tijdlijnlijn en datums */
}

/* De verticale lijn */
.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 74px; /* Afstand van de linkerkant van de container */
  width: 4px;
  height: 100%;
  background-color: #333; /* Grijze lijn */
  z-index: 1;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px; /* Ruimte tussen de items */
  padding-bottom: 20px; /* Ruimte onder elk item voor de lijn */
  padding-left: 40px; /* Ruimte voor de cirkel en lijnsegment */
  border-left: 2px solid transparent; /* Placeholder, de echte lijn komt van de container ::before */
  z-index: 2; /* Zorgt ervoor dat de inhoud boven de lijn komt */
}

.timeline-item:last-child {
  margin-bottom: 0; /* Geen ruimte onder het laatste item */
}

/* De cirkels op de lijn */
.timeline-item::before {
  content: '';
  position: absolute;
  top: 5px; /* Uitlijning met de bovenkant van de tekst */
  left: 17px; /* Positionering van de cirkel op de lijn */
  width: 8px;
  height: 8px;
  background-color: #333; /* Kleur van de cirkel */
  border-radius: 50%;
  z-index: 3;
  border: 3px solid white;
}

.timeline-date {
  position: absolute;
  top: 0;
  left: -100px; /* Positionering van de datum links van de lijn */
  width: 100px;
  padding: 5px 10px;
  background-color: #333; /* Achtergrondkleur voor de datum blokken */
  color: white;
  font-weight: normal;
  font-size: 0.8em;
  text-align: right;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  /* De pijl aan de rechterkant van de datumblok */
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Zorgt dat de tekst rechts uitlijnt */
  white-space: nowrap; /* Voorkomt dat de tekst breekt */
}

.timeline-date::after {
  content: '';
  position: absolute;
  right: -20px; /* Positionering van de pijl */
  width: 20px; /* Breedte van de pijl */
  height: 2.1em; /* Hoogte van de pijl */
  background-color: #333;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  clip-path: polygon(0 0, 100% 50%, 0 100%); /* Creëert een driehoekige pijl */
  box-sizing: border-box; /* Zorgt dat padding en border meegerekend worden */
  z-index: -1; /* Zorgt dat de pijl achter de tekst zit */
}


.timeline-content {
  margin-left: 20px; /* Ruimte tussen de cirkel en de tekst */
}

.timeline-content h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
}

.timeline-content .company {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1em;
}

.timeline-content .description {
  font-size: 0.9em;
  color: #555;
}