.filter_tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid #ddd;
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
}

.filter_tabs .tab-button {
    font-weight: bold;
    color: #333;
    transition: color 0.2s ease;
    position: relative; 
    padding: 10px 12px; 
    border: none; 
    background: none; 
    font-weight: bold; 
    cursor: pointer;
}
/*style=""
*/

.filter_tabs .active-tab {
    color: var(--color-blue);
}

.filter_tabs .active-tab::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--color-blue);
    border-radius: 2px;
}

.filter_tabs .inactive-tab {
    color: #333;
}

.filter_tabs .tab-button:hover {
    color: var(--color-blue);
}

@media (max-width: 768px) {
    .filter_tabs {
      overflow-x: auto;
      white-space: nowrap;
      padding: 0.5rem 0.5rem 0.5rem 1rem;
      gap: 12px;
      scrollbar-width: none;
      -ms-overflow-style: none;
      position: relative;
      mask-image: linear-gradient(to right, black 90%, transparent);
      -webkit-mask-image: linear-gradient(to right, black 90%, transparent);
    }
  
    .filter_tabs::-webkit-scrollbar {
      display: none;
    }
  
    .filter_tabs::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 30px;
      height: 100%;
      background: linear-gradient(to left, white, transparent);
      pointer-events: none;
      z-index: 1;
    }
  
    .filter_tabs .tab-button {
      white-space: nowrap;
      font-size: 0.95rem;
      padding: 8px 10px;
      flex-shrink: 0;
    }
  
    .filter_tabs .active-tab::after {
      bottom: 0;
      height: 2px;
    }
  }