.track-box {
  border-radius: 15px;
  background-color: #f4f9f4;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.track-left {
  background-size: cover;
  background-position: center;
  min-height: 250px;
}
.track-right {
  padding: 30px;
}
.track-input {
  border-radius: 8px;
  border: 1px solid #ccc;
}
.track-btn {
  border-radius: 8px;
  background-color: #2e5f3e;
  color: white;
  border: none;
}
.track-btn:hover {
  background-color: #244d31;
}
@media (max-width: 767.98px) {
  .track-box {
    flex-direction: column !important;
  }
  .track-left,
  .track-right {
    min-height: unset !important;
    padding: 20px !important;
  }
  .track-left img {
    max-height: 180px !important;
  }
  #chartdiv {
  width: 100%;
  height: 550px;
  /* border: 1px solid #ccc;
                border-radius: 8px; */
}
}
#chartdiv {
  width: 100%;
  height: 100%;
}
.container-header {
  background-color: #1d4b0b;
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.milestone {
  margin-top: 20px;
}
.milestone-icon {
  width: 30px;
  height: 30px;
}
.milestone-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.milestone-item .milestone-date {
  margin-left: auto;
}
.btn-track {
  background-color: #1d4b0b;
  color: white;
  padding: 10px 0px;
}

.btn-track:hover {
  color: white;
}

.milestone-type {
  font-weight: bold;
  font-size: small;
}
.milestone-location {
  font-size: small;
  text-transform: uppercase;
}

.milestone-date {
  font-size: small;
  color: #666;
}

.tracking-section {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tracking-section p {
  margin: 0;
  padding: 0;
}

.from-to-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.card-lightgreen {
  background-color: #e0f7e0;
  border: 1px solid #b2e0b2;
  border-radius: 8px;
  padding: 10px;
}

.lastevent-list-wrapper {
  display: flex;
  gap: 10px;
}

.form-track-wrapper {
  height: 600px;
  overflow-y: auto;
}

.tracking-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.milestone-icon {
  border: 1px solid #1d4b0b;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
}

.milestone-divider {
  width: 100%;
  background-color: #ccc;
  height: 1px;
  margin: 10px 0 0 40px;
}

.milestone-vertical-line {
  width: 2px;
  height: 86px;
  background: #2e5f3e;
  margin-top: 2px;
  margin-bottom: 2px;
}

.loading {
  display: inline-grid;
  font-size: 30px;
}
.loading:before,
.loading:after {
  content: "🚢";
  grid-area: 1/1;
}
.loading:after {
  animation: l10 1s infinite;
}
@keyframes l10 {
  to {transform:scale(1.8);opacity:0}
}

.form-control-rustic:focus {
  color: #212529;
  background-color: #fff;
  border-color: #2e5f3e;
  border-width: 1px;
  outline: 0;
}

.sub-info-track-rustic {
  font-size: small;
  color: #666;
  text-align: center;
}