#processfbBox {
  display: none;
  clear: both;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  padding: 30px;
  border-top: 4px solid #f39c12;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: #f39c12;
  padding-left: 0;
  text-align: center;
}

#progressbar li {
  list-style-type: none;
  font-size: 14px;
  width: 33.33%;
  float: left;
  position: relative;
  font-weight: 500;
}

#progressbar li.active {
  color: #f39c12 !important;
  font-weight: bold;
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: #f39c12 !important;
}

.progress-container {
  height: 12px;
  background-color: #f5f5f5;
  border-radius: 10px;
  margin: 0 10%;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar-orange {
  height: 100%;
  background: linear-gradient(90deg, #f39c12 0%, #f1c40f 100%);
  border-radius: 10px;
  transition: width 0.4s ease-in-out;
}

.step-box {
  background: #fffaf0;
  border: 1px dashed #f3ce85;
  border-radius: 8px;
  padding: 20px;
  margin-top: 25px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.step-box h2 {
  color: #d35400;
  font-size: 18px;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.status-text {
  color: #e67e22;
  font-size: 16px;
  margin-top: 10px;
}

.step-icon {
  font-size: 24px;
  color: #f39c12;
  margin-bottom: 10px;
}

.spinner-orange {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  border: 4px solid rgba(243, 156, 18, 0.3);
  border-radius: 50%;
  border-top-color: #f39c12;
  animation: spin-orange 1s ease-in-out infinite;
}

@keyframes spin-orange {
  to {
    transform: rotate(360deg);
  }
}