/* Timeline container */
.widget--timeline-incident .block-html ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

/* Vertical line */
.widget--timeline-incident .block-html ul::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #e0e0e0;
}

/* Timeline items */
.widget--timeline-incident .block-html ul li {
  position: relative;
  padding: 12px 20px 12px 50px;
  margin-bottom: 8px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.widget--timeline-incident .block-html ul li:hover {
  background: #e9ecef;
  transform: translateX(4px);
}

/* Timeline dots */
.widget--timeline-incident .block-html ul li::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid #007bff;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* First item highlight */
.widget--timeline-incident .block-html ul li:first-child::before {
  background: #007bff;
  border-color: #0056b3;
}

/* Last item - remove extra spacing */
.widget--timeline-incident .block-html ul li:last-child {
  margin-bottom: 0;
}