.tracking-container {
  position: relative;
  height: 100%;
  background-color: #f8f9fa;
}

.tracker-circle {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: red;
}

.tracker-circle-pending {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: orange;
}

.tracker-circle-complete {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: green;
}

.tracker-circle.inactive {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: grey;
}

.tracker-line {
  /*position: absolute;*/
  /*top: 30px;*/
  /*left: 50%;*/
  /*transform: translateX(-50%);*/
  /*width: 1px;*/
  /*height: calc(100% - 40px);*/
  /*background-color: red;*/
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% -40px);
  background-color: red;
  height: calc(100% - 100px);
  z-index: 1;
}

/* Optional styling for better visual clarity */

.tracking-container div {
  padding: 0.1em;
}

.here-now-circle {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: red;
  animation: fade 5s infinite;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.tracker-line.inactive {
  background-color: grey;
}

