/* Main Card Wrapper */
.dst-card {
  background-color: #EDEDED;
  padding: 20px 15px;
  border-radius: 12px;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

/* Row setup - icons and lines align korbe */
.dst-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Icons gulo line borabor thakbe text niche thakbe */
}

/* Each Step (Icon + Text) */
.dst-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1; /* Shoman jaiga nibe */
}

/* Icon Styling */
.dst-icon-wrap {
  margin-bottom: 8px;
  color: #000; /* SVG color control */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px; /* Alignment thik rakhar jonno */
}

.dst-icon-svg svg {
  width: 24px;
  height: 24px;
}

/* Text Styling */
.dst-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dst-title {
  font-size: 13px;
  font-weight: 700;
  color: #000;
}

.dst-date {
  font-size: 11px;
  color: #555;
}

/* Progress Line and Dots */
.dst-progress {
  display: flex;
  align-items: center;
  flex-grow: 1;
  margin-top: 12px; /* Icon er center e anar jonno adjust kora */
  padding: 0 5px;
}

.dst-line {
  height: 2px;
  background-color: #000;
  flex-grow: 1;
}

.dst-dot {
  width: 6px;
  height: 6px;
  background-color: #000;
  border-radius: 50%;
  flex-shrink: 0;
}