

.delivery-status {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
}
.header-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #b0bec5;
}
.unavailable {
  color: #b0bec5;
  font-weight: 500;
}
.tabs {
  display: flex;
  border-bottom: 1.5px solid #e0e0e0;
  margin-bottom: 8px;
  margin-top: 20px;
}
.tab {
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  color: #bdbdbd;
  transition: color 0.2s;
}
.tab.active {
  border-bottom: 2.5px solid #1976D2;
  color: #1976D2;
  background: #fff;
}
.section-title {
  font-size: 20px;
  margin: 28px 0 16px 20px;
  font-weight: 600;
}

.timeline {
  position: relative;
  margin-left: 45px;
  padding-bottom: 8px;
}
.timeline:before {
  content: '';
  position: absolute;
  left: -22px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #1a56db;  /*#1976D2*/
  border-radius: 2px;
}
.timeline-event {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  min-height: 38px;
}
.timeline-event:last-child {
  margin-bottom: 0;
}
.timeline-icon {
  position: absolute;
  left: -34px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(25,118,210,0.08);
  padding: 4px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}
.timeline-event.active .timeline-icon svg {
  filter: drop-shadow(0 0 2px #1976D2AA);
}
.timeline-event .timeline-content {
  background: transparent;
  padding: 0px 0;
}
.event-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 6px;
  margin-left: 5px;
  color: #212121;
}
.event-location {
  font-size: 14px;
  color: #8c99a5; /* 1976D2*/
  margin-bottom: 2px;
  margin-left: 5px;
}
.event-datetime {
  font-size: 13px;
  margin-left: 5px;
  color: #8c99a5;
  margin-bottom: 2px;
}
@media (max-width: 600px) {
  .container {
    border-radius: 0;
    max-width: 100vw;
    margin: 0;
  }
  .header, .section-title {
    padding-left: 10px;
    padding-right: 10px;
  }
  .timeline {
    margin-left: 34px;
  }
  .timeline-icon {
    left: -36px;
    width: 28px;
    height: 28px;
    padding: 2px;
  }
  .event-title {
    font-size: 10px;
  }
  .section-title {
    font-size: 17.5px;
  }
  .list-group {
    font-size: 12.5px;
  }
}