.tracking-container {
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 350px;
    text-align: center;
  }

  .steps {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    position: relative;
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 15px;
    width: calc(100% - 30px);
    height: 4px;
    background: #ddd;
    z-index: 0;
  }

  .step {
    position: relative;
    z-index: 1;
  }

  .circle {
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
  }

  .step.active .circle {
    background: #4CAF50;
  }
  
  .step.active.bg-red-200 .circle {
  background: #f87171; /* merah untuk ditolak */
}

.step.active.bg-red-200::before {
  background: #fca5a5;
}

  .step p {
    font-size: 12px;
    margin-top: 8px;
  }

  button {
    padding: 8px 15px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  button:hover {
    background: #45a049;
  }
