.Receiver_info_holder {
  background: #ffff;
  border-radius: 5px;
  opacity: 1;
  /* font-family: roboto; */
  padding: 10px;
  box-shadow: 0px 3px 6px #00000029;
}

.Receiver_info_holder .text_holder h4 {
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  opacity: 1;
}

.Receiver_info_holder .text_holder p {
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  opacity: 1;
}

.Receiver_info_holder .text_holder .name_holder {
  display: flex;
}

.Receiver_info_holder .text_holder .name_holder .icon_holder {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 3px #00000029;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.Receiver_info_holder .text_holder .name_holder .icon_holder .info_icon {
  font-size: 12px;
  color: #000;
}

.tracking-steps .step-info {
  font-size: 15px;
  font-weight: 500;
}



.tracking-steps {
  width: 100%;
  margin-top: 20px;
}

.refund-step {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 22px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(22, 101, 52, 0.08);
  overflow: hidden;
}

/* Green left accent */
.refund-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #16a34a;
}

/* Success icon */
.step-indicator {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.25);
}

.step-content {
  flex: 1;
}

.step-title {
  color: #15803d;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-title::before {
  content: "💸";
  font-size: 20px;
}

.step-info {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}

.step-info p {
  margin: 0 0 8px;
}

.step-info strong {
  color: #166534;
  font-weight: 600;
}

/* Note box */
.Receiver_info_holder .refund-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #fde68a;
  border-radius: 9px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

.Receiver_info_holder .note-icon {
  font-size: 17px;
  line-height: 1.4;
}

.Receiver_info_holder .refund-note strong {
  color: #92400e;
}

/* Mobile */
@media (max-width: 576px) {
  .refund-step {
    padding: 16px;
    gap: 12px;
  }

  .step-indicator {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 18px;
  }

  .step-title {
    font-size: 16px;
  }

  .step-info {
    font-size: 13px;
  }

  .refund-note {
    padding: 10px;
  }
}



@media (min-width: 0px) and (max-width: 991px) {
  .Receiver_info_holder .text_holder p {
    font-size: 12px;
  }

  .Receiver_info_holder .text_holder h4 {
    font-size: 17px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .Receiver_info_holder .text_holder p {
    font-size: 14px;
  }
}