.view-tabs .tabs-container {
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.view-tabs .tabs-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 44px;
    scrollbar-width: none;
    border-bottom: 1px solid var(--color-gray-15);
}

.view-tabs .tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.view-tabs .tab-item {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    cursor: pointer;
    white-space: nowrap;
    padding: 8px 16px;
}

.view-tabs .tab-item.active {
    color: var(--color-text-primary);
    border-bottom: 2px solid var(--color-primary);
    transition: left 0.3s ease;
    font-weight: 600;
    cursor: auto;
    pointer-events: none;
}

@media (width <= 600px) {
    .view-tabs .tab-item {
        font-size: 14px;
    }

    .view-tabs .tabs-wrapper {
        gap: 0;
    }
}
