/* Journey timeline styling */
.journey-timeline {
  position: relative;
  padding: 20px 0;
}

.journey-point {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 24px;
}

.journey-point:last-child {
  margin-bottom: 0;
}

.point-marker {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border: 2px solid #dee2e6;
  z-index: 1;
}

.point-marker i {
  color: #6c757d;
}

.journey-point.completed .point-marker {
  background-color: #d4edda;
  border-color: #28a745;
}

.journey-point.completed .point-marker i {
  color: #28a745;
}

.journey-point.waypoint .point-marker {
  background-color: #cce5ff;
  border-color: #0d6efd;
}

.journey-point.waypoint .point-marker i {
  color: #0d6efd;
}

.journey-point.current .point-marker {
  background-color: #fff3cd;
  border-color: #ffc107;
}

.journey-point.current .point-marker i {
  color: #ffc107;
}

.journey-connection {
  position: absolute;
  left: 15px;
  width: 2px;
  background-color: #dee2e6;
  top: 30px;
  bottom: -24px;
  z-index: 0;
}

.journey-connection.completed {
  background-color: #28a745;
}

.journey-connection.active {
  background-color: #0d6efd;
}

.journey-point:last-child .journey-connection {
  display: none;
}

.point-details {
  flex: 1;
}

.point-details h6 {
  margin-bottom: 5px;
}

/* Waypoint editing controls */
.waypoint-item {
  border: 1px solid #dee2e6;
  margin-bottom: 1rem;
  position: relative;
}

.waypoint-item .card-header {
  background-color: #f8f9fa;
  padding: 0.5rem 1rem;
}

.waypoint-placeholder {
  border: 2px dashed #0d6efd;
  background-color: #f8f9fa;
  height: 80px;
  margin-bottom: 1rem;
}
