
.madra-estimated-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
  padding: 12px 15px;
  background: #f8f8f8;
  border-radius: 10px;
  border: 1px solid #e1e1e1;
  font-family: Arial, sans-serif;
}

.mt-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.mt-icon img {
  width: 26px;
  height: 26px;
  margin-bottom: 6px;
}

.mt-label {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 2px;
}

.mt-date {
  font-size: 13px;
  color: #777;
}

.mt-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: #ddd;
}

@media (max-width: 768px) {
  .madra-estimated-timeline {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .mt-step {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .mt-step:last-child {
    margin-bottom: 0;
  }

  .mt-step:not(:last-child)::after {
    display: none;
  }

  .mt-icon img {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }

  .mt-label {
    font-size: 15px;
  }

  .mt-date {
    font-size: 13px;
  }
}
