body {
  background-color: #e7f2f1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 50px 20px;
}

.stepper-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* --- ĐƯỜNG KẺ NGANG --- */
.stepper-item::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #c2cdd7;
  z-index: 1;
}

/* --- DẤU MŨI TÊN (MỚI) --- */
.stepper-item::before {
  content: "";
  position: absolute;
  top: 20px; /* Bằng với vị trí của đường kẻ ngang */
  left: 100%; /* Đặt vị trí mũi tên ở chính giữa khoảng cách của 2 bước */
  width: 8px;
  height: 8px;
  border-top: 2px solid #c2cdd7; /* Tạo viền trên và viền phải để làm mũi tên */
  border-right: 2px solid #c2cdd7;
  transform: translate(-50%, -50%) rotate(45deg); /* Xoay 45 độ để tạo thành hình mũi tên > */
  z-index: 3;
}

/* Ẩn đường kẻ và mũi tên sau bước cuối cùng */
.stepper-item.last::after,
.stepper-item.last::before {
  content: none;
}

/* --- TRẠNG THÁI MẶC ĐỊNH --- */
.step-counter {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #c2cdd7;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.step-number {
  color: #8c9aab;
  font-weight: bold;
  font-size: 14px;
}

.step-tick {
  display: none;
  color: #ffffff;
}

.step-name {
  color: #8c9aab;
  font-size: 15px;
  text-align: center;
}

/* --- TRẠNG THÁI ACTIVE (Đang kích hoạt) --- */
.stepper-item.active .step-counter {
  background-color: #00817d;
  border-color: #00817d;
  box-shadow: 0 0 0 10px #cde5e3;
}

.stepper-item.active .step-number {
  color: #ffffff;
}

.stepper-item.active .step-name {
  color: #00817d;
  font-weight: 600;
}

/* --- TRẠNG THÁI COMPLETED (Đã qua) --- */
.stepper-item.completed .step-counter {
  background-color: #00817d;
  border-color: #00817d;
  box-shadow: none;
}

.stepper-item.completed .step-number {
  display: none;
}

.stepper-item.completed .step-tick {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stepper-item.completed .step-name {
  color: #00817d;
  font-weight: 600;
}

/* Đổi màu đường nối và mũi tên sang xanh khi bước đã hoàn thành */
.stepper-item.completed::after {
  background-color: #00817d;
}

.stepper-item.completed::before {
  border-color: #00817d;
}