.filter-status-wrapper {
    display: flex;
    justify-content: center; /* ini bikin isi ke tengah */
    flex-wrap: nowrap;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    background-color: #181a1b;
    overflow-x: auto;
    scrollbar-width: none;
  }
  
  .filter-status-wrapper::-webkit-scrollbar {
    display: none;
  }

  .filter-status-wrapper::-webkit-scrollbar {
    display: none; /* Chrome */
  }

  .filter-tab {
    background: #1f1f1f;
    color: #ccc;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    font-size: 0.85rem;
    flex-shrink: 0; /* biar gak mengecil saat scroll */
  }

  .filter-tab:hover {
    background-color: #3b221a;
    color: #ff6f00;
    border-bottom: 2px solid #ff6f00;
  }

  .filter-tab.active {
    background-color: #ff6f00;
    color: white;
    border: none;
    box-shadow: 0 2px 10px rgba(255, 111, 0, 0.5);
  }

  @media (max-width: 480px) {
    .filter-tab {
      padding: 8px 12px;
      font-size: 0.78rem;
    }
  }
  @media (max-width: 576px) {
    .filter-status-wrapper {
      padding-left: 16px;
      padding-right: 16px;
    }
  }
  