
.container {
  display: flex;
  width: 100%;
  /*margin-top: 100px; /* Space for the fixed taskbar */
}

.post {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
}
h1, h2 {
  color: #333;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #007bff;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  position: relative;
  width: 45%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin: 20px 0;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: white;
  border: 4px solid #007bff;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
  flex-direction: row;
}

.timeline-item.right {
  left: 50%;
  flex-direction: row-reverse;
}

.timeline-item .date {
  font-weight: bold;
  color: #007bff;
  margin-bottom: 10px;
}

.timeline-item .content {
  color: #333;
  padding: 0 20px;
}

.timeline-item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .timeline-item {
    width: 100%;
    left: 0;
  }

  .timeline::after {
    left: 10px;
  }

  .timeline-item::after {
    left: 0;
    right: auto;
  }

  .timeline-item img {
    display: none;
  }
}
