.margin-container {
  max-width: 650px;
  margin: 0 auto;
}

.disabled-link {
  pointer-events: none; /* Disables mouse clicks and taps */
  cursor: default; /* Changes cursor from hand to default arrow */
  opacity: 0.5; /* Optional: visually indicates the link is disabled */
}

.follow-up-container {
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #3C3C3B;
}
.follow-up-container .follow-up__title {
  font-weight: 600;
  font-size: 26px;
}
.follow-up-container .follow-up__description {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: normal;
}
.follow-up-container p {
  font-size: 14px;
  margin-bottom: 20px;
}
.follow-up-container .form-row {
  display: flex;
  margin-top: 15px;
  gap: 20px;
  justify-content: center;
}

.form-label {
  background-color: #0857C3;
  color: white;
  padding: 0px 20px;
  font-weight: 600;
  text-align: left;
  display: inline-block;
  width: 100%;
  font-size: 20px;
}

.form-row input[type=text] {
  flex: 1;
  padding: 10px;
  border: 2.8px solid #0857C3;
  border-radius: 6px;
  font-size: 20px;
  color: #3C3C3B;
  background-color: #f9f9f9;
  outline: none;
  text-align: center;
}

.form-row input::placeholder {
  color: #999;
}

.form-row button {
  background-color: #89b3f6;
  color: white;
  border: none;
  cursor: not-allowed;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 20px;
  border-radius: 6px;
  width: 200px;
  transition: background-color 0.3s ease;
}
.form-row button.search-btn-active {
  cursor: pointer;
  background-color: #0857C3;
}

.form-row button.enabled {
  background-color: #0857C3;
  cursor: pointer;
}

.status-timeline {
  width: auto;
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  font-family: "Poppins", sans-serif;
}
.status-timeline h2 {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 2px solid #0857C3;
  display: inline-block;
  margin-bottom: 25px;
  color: #0857C3;
  width: 100%;
  padding-bottom: 10px;
}
.status-timeline h2.error {
  color: #F51818;
  border-bottom: 2px solid #F51818;
}
.status-timeline .detail {
  font-weight: 500;
  margin-bottom: 20px;
}
.status-timeline .detail p {
  margin-bottom: 0;
}
.status-timeline .detail p:not(.subtitle) {
  color: #3C3C3B;
}
.status-timeline .subtitle {
  color: #0857C3;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 8px;
}
.status-timeline .timeline-line {
  position: absolute;
  top: 74px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: #ccc;
  z-index: 1;
}
.status-timeline .step-indicator__line {
  margin-top: 2%;
  border-bottom: 2px solid #bbb;
  height: 2px;
  width: 141px;
}
.status-timeline .step-indicator__line.completed {
  border-bottom: 2px solid #0857C3;
}
.status-timeline .step-indicator__line.inactive {
  border-bottom: 2px solid #bbb;
}
.status-timeline .timeline-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  font-family: "Poppins", sans-serif;
}
.status-timeline .timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.status-timeline .timeline-step.inactive .step-title {
  color: #A3A3A3;
}
.status-timeline .timeline-step .step-indicator {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #A3A3A3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.status-timeline .timeline-step .step-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.status-timeline .timeline-step .step-description {
  width: 140px;
  font-size: 11px;
  color: #A3A3A3;
}
.status-timeline .timeline-step .step-description a.link_detail {
  text-decoration: underline;
  color: #0857C3 !important;
  font-weight: bold;
}
.status-timeline .timeline-step.completed .step-indicator {
  background-color: #0857C3;
  color: white;
}
.status-timeline .timeline-step.completed .step-title,
.status-timeline .timeline-step.completed .step-description {
  color: #0857C3;
}
.status-timeline .timeline-step.current .step-indicator {
  background-color: white;
  border: 2px solid #0857C3;
  color: #0857C3;
}
.status-timeline .timeline-step.current .step-title,
.status-timeline .timeline-step.current .step-description {
  color: #0857C3;
}
.status-timeline .timeline-step.pending .step-indicator {
  background-color: #f0f0f0;
  color: #bbb;
}
.status-timeline .timeline-step.pending .step-title,
.status-timeline .timeline-step.pending .step-description {
  color: #bbb;
}
.status-timeline .timeline-step::after {
  content: "";
  position: absolute;
  height: 43px;
  width: 1px;
  left: 14px;
  top: 32px;
  background-color: #0857C3;
}
@media (min-width: 769px) {
  .status-timeline .timeline-step::after {
    content: none;
  }
}
.status-timeline .timeline-step:last-child::after {
  content: none;
}

.w-45 {
  width: 50%;
}

.rombo-figure {
  width: 13.74px;
  height: 13.74px;
  background-color: #C2D9FC;
  transform: rotate(45deg);
}

.separator-fotocromatic {
  border-top: 1.5px solid #C2D9FC;
}

.separator-fotocromatic-dashed {
  border-top: 1.5px dashed #BABABA;
  border-width: 2px;
}
@media (max-width: 991.98px) {
  .separator-fotocromatic-dashed {
    border-top: 1px solid #BABABA;
  }
}

.accordion-content {
  display: none;
  padding-top: 10px;
  padding-bottom: 25px;
}

.status-timeline.active .accordion-content {
  display: block;
}

.accordion-header {
  cursor: pointer;
  user-select: none;
}

.accordion-icon {
  display: inline-block;
  margin-left: 65%;
  border-width: 0 3px 3px 0;
  padding: 4px;
}

.status-timeline.active .accordion-icon {
  transform: rotate(-180deg); /* flecha hacia arriba */
}

.order-breadcrumb-alert {
  display: flex;
  align-items: flex-start;
  background-color: #ffe6e6;
  border: 2px solid #F51818;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #F51818;
  position: relative;
}
.order-breadcrumb-alert .alert-icon {
  flex-shrink: 0;
  margin-right: 0.75rem;
  font-size: 1.5rem;
  color: #F51818;
}
.order-breadcrumb-alert .alert-icon i {
  vertical-align: top;
}
.order-breadcrumb-alert .alert-icon .fa-exclamation-circle:before {
  content: "\F06A";
  color: #F51818;
  font-size: 39px;
}
.order-breadcrumb-alert .alert-message p {
  margin: 0;
}
.order-breadcrumb-alert .alert-message p strong {
  font-weight: bold;
  color: #F51818;
}
.order-breadcrumb-alert .alert-message p a {
  color: #F51818 !important;
  text-decoration: none;
}
.order-breadcrumb-alert .alert-message p a:hover {
  text-decoration: underline;
}

@media (min-width: 544px) {
  .status-timeline .timeline-step .step-title {
    font-size: 18px;
  }
  .status-timeline .timeline-step .step-description {
    font-size: 12px;
  }
}
@media (max-width: 768.98px) {
  .order-breadcrumb-alert .alert-icon {
    width: 100%;
    text-align: center;
  }
  .order-breadcrumb-alert {
    flex-direction: column;
    font-size: 14px;
  }
  .pb-2,
  .py-2 {
    padding-bottom: 2rem !important;
  }
  .d-md-flex.align-items-center.pt-2.separator-fotocromatic-rombo-figure {
    display: none;
  }
  .follow-up-container {
    padding: 0 16px;
    text-align: left;
  }
  .follow-up-container .follow-up__title {
    font-size: 22px;
    text-align: center;
  }
  .follow-up-container .follow-up__description {
    font-size: 18px;
    text-align: center;
  }
  .follow-up-container .form-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .follow-up-container .form-row input[type=text] {
    font-size: 18px;
    text-align: center;
  }
  .follow-up-container .form-row button {
    width: 100%;
    font-size: 18px;
  }
  .follow-up-container .form-label {
    font-size: 18px;
    text-align: left;
  }
  .status-timeline {
    padding: 0 16px;
  }
  .status-timeline h2 {
    font-size: 16px;
  }
  .status-timeline .timeline-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .status-timeline .timeline-step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 0 0 57px;
  }
  .status-timeline .timeline-step .step-indicator {
    width: 28px;
    height: 28px;
    font-size: 14px;
    flex-shrink: 0;
  }
  .status-timeline .timeline-step .step-title {
    font-size: 14px;
    margin: 0;
  }
  .status-timeline .timeline-step .step-description {
    font-size: 12px;
    width: 100%;
    color: #A3A3A3;
  }
  .status-timeline .step-indicator__line {
    display: none;
  }
  .accordion-icon {
    margin-left: auto;
  }
}