body {
  font-family: Arial, sans-serif;
  background: white !important;
}

.container {
  width: 900px;
  margin: 30px auto;
  background: #fff;
  padding: 25px;
  border-radius: 6px;
}

h3 {
  margin-top: 25px;
}

input {
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.row input {
  flex: 1;
}

.box {
  border: 1px solid #ddd;
  padding: 15px;
  background: #fafafa;
}

.primary-btn {
  background: #6a1b9a;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
}

.secondary-btn {
  background: #ddd;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
}

.primary-btn:hover {
  opacity: 0.9;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;

  color: #333;
}

/* ===== HEADER ===== */
.fedex-header {
  background: #4d148c;
  color: #fff;
  padding: 16px 30px;
  font-size: 20px;
  font-weight: 600;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 900px;
  margin: 25px auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* ===== SECTION ===== */
.section {
  padding: 18px 22px;
  border-bottom: 1px solid #e5e5e5;
}

.section:last-child {
  border-bottom: none;
}

.label {
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 6px;
  font-weight: 600;
}

.value {
  font-size: 16px;
  font-weight: 500;
}

/* ===== PACKAGE DETAILS ===== */
.package-details p {
  margin: 4px 0;
  font-size: 14px;
}

/* ===== TIMELINE ===== */
.timeline {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.timeline:last-child {
  border-bottom: none;
}

.time {
  width: 180px;
  font-size: 13px;
  color: #555;
}

.status {
  font-weight: 600;
}

.location {
  font-size: 14px;
  color: #666;
}

/* ===== TRACK SEARCH PAGE ===== */
.hero {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #4d148c;
}

.track-box {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.track-box input {
  flex: 1;
  padding: 14px;
  border: none;
  font-size: 16px;
  outline: none;
}

.track-box button {
  background: #ff6200;
  color: #fff;
  border: none;
  padding: 0 26px;
  font-size: 16px;
  cursor: pointer;
}

.track-box button:hover {
  opacity: 0.9;
}
/* ===== SUMMARY UI (FIXED) ===== */
.summary{
  display:flex;
  gap:20px;
  align-items:flex-start;
}

.summary-line{
  width:6px;
  background:var(--line-color);
  border-radius:6px;
  position:relative;
  align-self:stretch;   
}

.dot{

 background:var(--line-color);
}
.summary-dot{
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--line-color);
  margin:22px 0;
  position:relative;
  z-index:2;
}

.summary-dot.active::before{
  content:'';
  position:absolute;
  left:-16px;
  top:-11px;
  width:36px;
  height:36px;
  border-radius:50%;
  background:var(--line-color);
  display:flex;
  align-items:center;
  justify-content:center;
}

.arrow{

  background:var(--line-color);

}
.summary-dot.active::after{
  content:'➜';
  position:absolute;
  left:-6px;
  top:-2px;
  color:#fff;
  font-size:18px;
  font-weight:bold;
  z-index:3;
}

.summary-items{
  display:flex;
  flex-direction:column;
}

.summary-item{
  margin-bottom:30px;
}

.summary-item.active{
  background:#f2f2f2;
  padding:10px 14px;
  border-radius:14px;
}


/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .timeline {
    flex-direction: column;
  }
  .time {
    width: 100%;
    margin-bottom: 6px;
  }
}
