.tracker-section {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
}
.hero-content {
  padding-left: 20px;
}
.blue {
  color: #05161e;
  margin-bottom: 10px;
}
.str {
  background-color: #05161e;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 15px;
  color: #f5f8fa;
}
.stt {
  background-color: rgb(178, 181, 213);
  padding: 10px;
  border-radius: 5px;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}
.trc {
  margin-bottom: 10px;
}
.spt{
    margin-bottom: 20px;
}
#trackingInput {
  padding: 10px;
  width: 250px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  padding: 10px 20px;
  margin-left: 10px;
  background-color: #203a43;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #2c5364;
}

#shipmentDetails {
  margin-top: 30px;
  text-align: left;
  display: inline-block;
}

.hidden {
  display: none;
}
.tracker-section {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
}

#trackingInput {
  padding: 10px;
  width: 250px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  padding: 10px 20px;
  margin-left: 10px;
  background-color: #203a43;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #2c5364;
}

#shipmentDetails {
  margin-top: 30px;
  text-align: left;
  display: inline-block;
}

.hidden {
  display: none;
}
#map {
  width: 90%;
  height: 400px;
  margin: 30px auto;
  border: 2px solid #203a43;
  border-radius: 8px;
}
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px auto;
  width: 90%;
  max-width: 800px;
  position: relative;
  padding: 0 10px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 4px;
  background-color: #ccc;
  z-index: 0;
}

.stage {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 20%;
  font-size: 14px;
  font-weight: bold;
}

.stage::before {
  content: "";
  display: block;
  margin: 0 auto 8px auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ccc;
  border: 2px solid #203a43;
}

.stage.completed::before {
  background-color: #2ecc71;
}

.stage.in-progress::before {
  background-color: #f1c40f;
}

.stage.upcoming::before {
  background-color: #ccc;
}
.progress-container {
  width: 90%;
  max-width: 800px;
  height: 20px;
  background-color: #e0e0e0;
  border-radius: 10px;
  margin: 20px auto;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2ecc71, #27ae60);
  border-radius: 10px;
  transition: width 0.5s ease;
}
.progress-bar.dispatched {
  background: linear-gradient(90deg, #3498db, #2980b9); /* Blue */
}

.progress-bar.in-transit {
  background: linear-gradient(90deg, #f1c40f, #f39c12); /* Yellow */
}

.progress-bar.out-for-delivery {
  background: linear-gradient(90deg, #e67e22, #d35400); /* Orange */
}

.progress-bar.delivered {
  background: linear-gradient(90deg, #2ecc71, #27ae60); /* Green */
}
.progress-label {
  text-align: center;
  font-weight: bold;
  margin-top: 6px;
  font-size: 14px;
  color: #203a43;
}
.progress-bar.on-hold {
  background: linear-gradient(90deg, #f39c12, #d35400); /* Amber / Orange */
}

.progress-bar.canceled {
  background: linear-gradient(90deg, #e74c3c, #c0392b); /* Red */
}
.countdown-timer {
  font-weight: bold;
  font-size: 18px;
  color: #203a43;
  margin-top: 10px;
  text-align: center;
}
.weather-section {
  border: 1px solid #ddd;
  padding: 10px;
  margin-top: 20px;
  background-color: #f4f4f4;
  border-left: 5px solid #007bff;
}
/* .download-btn {
  background-color: #203a43;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
} */
