/* History Page Specific Styles */

.timeline {
  position: relative;
  margin: 2rem 0;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background-color: rgba(46, 125, 50, 0.3);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-marker {
  position: absolute;
  left: -2.5rem;
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 0;
}

.timeline-date {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(46, 125, 50, 0.1);
  color: var(--primary-color);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .timeline {
    padding-left: 1.5rem;
  }

  .timeline-marker {
    left: -2rem;
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .timeline-date {
    font-size: 0.8rem;
  }
}

