/* Grid container */
.timeline-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 3px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 4px;
}

/* Grid items */
.timeline-grid-item {
  background-color: #5f8bb5; /* #4CAF50; */
  color: white;
  padding: 4px;
  font-size: 0.9rem;
  text-align: center;
  border-radius: 4px;
  
  /* Add these styles */
  white-space: nowrap;    /* Prevents text from wrapping to the next line */
  overflow: hidden;       /* Ensures any overflow is hidden */
  text-overflow: ellipsis; /* Adds an ellipsis (...) at the end if the text overflows */
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
  .timeline-grid-container {
    grid-template-columns: repeat(3, 1fr);
	margin-bottom: 4px;
  }
}