/* --- Timeline Area Styling --- */

.timeline-area .timeline-item {
    position: relative;
  }
  
  /* --- Timeline Date Styling --- */
  
  /* Timeline date text styling */
  .timeline-area .timeline-date {
    width: 100px;
    font-weight: bold;
  }
  
  /* Timeline date circle indicator */
  .timeline-area .timeline-date::before {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #9C6800;
    content: "";
    top: 50%;
    left: 60px;
    z-index: 5;
    margin-top: -5.5px; /* Centers the circle vertically */
  }
  
  /* Timeline connector line */
  .timeline-area .timeline-date::after {
    position: absolute;
    width: 3px;
    height: 100%;
    content: "";
    background-color: #ccc;
    top: 0;
    left: 64px;
    z-index: 1;
  }
  