.section-tracker {
  background: #f7f4f4;
  padding: 1rem;
  border-radius: 10px;
  width: max-content;
  font-family: Arial, sans-serif;
  position: absolute;
  right:0px;
  width:20%;
  z-index: 10;
}

.tracker-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.tracker-item {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.tracker-item::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 0;
  bottom: -1.5rem;
  width: 2px;
  background: #ccc;
  z-index: 0;
}

.tracker-item:last-child::before {
  display: none;
}

.status-circle {
  position: absolute;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  z-index: 1;
}

.tracker-item.valid .status-circle {
  background: #3CB371; /* Green */
}

.tracker-item.error .status-circle {
  background: #E74C3C; /* Red */
}

.tracker-item.pending .status-circle {
  background: #999; /* Grey */
}

.tracker-item.active .status-circle {
  background: #D84BA0; /* Magenta */
}

.tracker-item a {
  color: #0073e6;
  text-decoration: none;
}

.tracker-item a:hover {
  text-decoration: underline;
}

.achieveform {
	width:90%;
}