.wfb-timeline {
    display: flex;
    justify-content: space-between;
    padding: 40px 0 20px;
    position: relative;
    margin-bottom: 20px;
    background: transparent;
  }
  
  .step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .step::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #F4A038; /* default orange */
    z-index: 3;
  }
  
  .step.active::before {
    background: #4B2510; /* dark for completed */
  }
  
  .step.current::before {
    background: #4B2510;
  }

  .step.notactive::before {
    background: #F4A038; /* dark for completed */
  }
  
  /* Replace the partial left-lines with full line coloring */
  .step-line {
    position: absolute;
    top: -3px;
    left: 0;
    height: 6px;
    z-index: 2;
    background: #4B2510;
  }

  .notactive .step-line {
    background: #F4A038;
}
  
  /* Dynamically create the active line */
  .step.active .step-line,
  .step.current .step-line,
  .step.notactive .step-line {
    width: 100%;
  }
  
  /* Timestamp */
  .step-time {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  
  /* Label */
  .step-label {
    font-weight: bold;
    color: #333;
  }
  
  /* Single status box (cancelled etc.) */
  .wfb-timeline-single {
    background: #fff3cd;
    color: #856404;
    padding: 12px 20px;
    border-left: 4px solid #ffeeba;
    margin-bottom: 20px;
    font-size: 15px;
  }
  
  /* Description box under timeline */
  .wfb-status-box {
    margin-top: 20px;
    padding: 20px;
    background: #FDFBF9;
    border: 1px solid #CCC;
    border-radius: 10px;
    text-align: center;
  }
  
  .wfb-status-box strong {
    display: block;
    color: #4E1F0D;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
  }
  
  .wfb-status-box span {
    color: #222;
    font-size: 14px;
  }
  