/* Horizontal Timeline - External Timeline.css */
.timeline {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-x: auto;
  padding: 1rem 0;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  gap: 2rem;
  font-family: sans-serif;
}

.timeline-event {
  flex: 0 0 auto;
  text-align: center;
  position: relative;
  padding: 0.5rem;
  max-width: 180px;
}

.timeline-event::before {
  content: '';
  width: 14px;
  height: 14px;
  background-color: blue;
  border-radius: 50%;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-event h4 {
  margin: 0.5rem 0 0.3rem;
  font-size: 14px;
  color: #222;
}

.timeline-event p {
  font-size: 12px;
  color: #555;
  margin: 0;
}
