:root {
    --primary-orange: #ff6600;
    --success-green: #2ecc71;
    --info-blue: #3498db;
    --text-dark: #333;
    --text-muted: #777;
    --bg-light: #f4f7f6;
    --line-color: #e0e0e0;
}

/* Timeline */
.tracking-wrapper {
    width: 700px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.header-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 30px;
  border-bottom: 2px solid var(--bg-light);
  padding-bottom: 10px;
}

.timeline {
  text-align: ;
  position: relative;
  padding-left: 50px; /* Ditambah sedikit untuk ruang ikon */
  list-style: none;
}

/* Garis Vertikal */
.timeline::before {
  content: '';
  position: absolute;
  left: 33px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: var(--line-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 35px;
}

/* Lingkaran Ikon */
.timeline-icon {
  position: absolute;
  left: -48px;
  top: 0;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--line-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Warna khusus untuk status Selesai/Aktif */
.timeline-item.active .timeline-icon {
  border-color: var(--success-green);
  background: #eafff2;
}

.timeline-item.active::before {
    background: var(--success-green);
}

.timeline-content {
  padding-top: 5px;
  padding-left: 25px;
}

.status-text {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 4px;
}

.status-icon{
width:45px;
height:45px;
/* object-fit:contain; */
}

.location-text {
  display: block;
  font-size: 1rem;
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 2px;
}

.timestamp {
  display: block;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.delivered-badge {
  background: var(--success-green);
  color: white;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  margin-left: 8px;
  vertical-align: middle;
}