:root {

    /* shipment panel colors */
    --bg:#ffffff;
    --panel:#efe7e2;      /* pale beige panel */
    --accent:#f6c021;     /* yellow accent */
    --brown:#4b2b17;      /* dark brown for logo */
    --teal:#0fa29b;       /* teal for active dot */
    --muted:#9a8f8a;      /* muted text */
    --track:#bfbdbb;      /* track line and inactive dots */
    --black:#111;
}


  /* Page */
  html,body{
    height:100%;
    margin:0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background:var(--bg);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
  }

  /* center the card like in the screenshot */
  .wrap{
    max-width:720px;
    margin:34px auto;
    padding:24px;
  }

  /* top rounded beige panel that contains the content */
  .panel{
    background:var(--panel);
    border-radius:28px;
    padding:32px 36px 48px 36px;
    position:relative;
    overflow:visible;
    box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  }

  /* top bar: logo left, profile icon right */
  .topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:22px;
  }

  /* approximate UPS shield badge (inline SVG) */
  .logo{
    width:68px;
    height:44px;
    display:block;
  }

  /* profile circle with silhouette */
  .profile{
    width:44px;
    height:44px;
    border-radius:50%;
    background:var(--accent);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 2px 0 rgba(0,0,0,0.05);
  }
  .profile svg{ width:22px; height:22px; display:block; }

  /* Title */
  .title{
    font-size:48px;
    font-weight:600;
    color:var(--black);
    margin:8px 0 12px 0;
    line-height:1;
  }

  /* thin yellow short underline element under title */
  .title-underline{
    width:64px;
    height:6px;
    background:var(--accent);
    border-radius:4px;
    margin-bottom:14px;
  }

  .req{
    color:var(--black);
    font-size:15px;
    margin-bottom:22px;
  }

.progress-wrap {
  margin-top: 20px;
  margin-bottom: 10px;
}

.progress {
  position: relative;
  display: flex;
  align-items: center;
  gap: 42px;
  padding-left: 22px;
  height: 36px;
}

/* Line under the dots */
.progress::before {
  content: "";
  position: absolute;
  left: 54px;
  right: 34px;
  top: 18px;
  height: 6px;
  background: #dcdcdc;
  border-radius: 6px;
  z-index: 0;
}

/* Dot wrapper */
.dot,



.step-dot {
  width: 20px;
  height: 20px;
  position: relative;
  border-radius: 50%;
  background: #eee;          /* light grey dot so it becomes visible */
  border: 2px solid #ccc;    /* grey outline */
}

.step-dot .inner {
  width: 12px;
  height: 12px;
  background: transparent;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
}

.step-dot .ring {
  width: 20px;
  height: 20px;
  border: 3px solid transparent;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

/* ACTIVE STEP */
.step-dot.active {
  background: transparent;   /* remove the grey fill */
  border-color: transparent; /* remove the border */
}

.step-dot.active .ring {
  border-color: #00857A;     /* green ring */
}

.step-dot.active .inner {
  background: #00857A;       /* green fill */
}





/* Empty dots */

  /* step text & label */
  .step{
    text-align:center;
    color:var(--muted);
    font-size:16px;
    margin-bottom:10px;
  }

  .section-label{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:6px;
  }

  .section-label h3{
    font-size:22px;
    font-weight:700;
    margin:0;
    color:var(--black);
  }

  /* right chevron */
  .chev{
    width:22px;
    height:22px;
    display:inline-block;
    transform:translateX(4px);
  }

  /* responsive small screens */
  @media (max-width:420px){
    .title{ font-size:34px; }
    .wrap{ padding:12px; }
  }


  