everyone, I have a question about fixing the width of the table in my paper. The code is shown below. Since there are too many contents in the same row in the table, it looks too large for my paper. How could I fix the problem? I have already tried the command resizebox, but it doesn't work well.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{enumerate}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage{multicol}
\usepackage{multirow}
\usepackage{makecell}
\usepackage{threeparttable}
\begin{document}
\begin{table}[ht]
\scriptsize
\caption{}
\begin{threeparttable}
\begin{tabular}{ccccc}
\hline
\hline
Low
& \multicolumn{2}{l}{\makecell[l]{19. Leathers,Furs and related products (1.35%)\21. Furniture Manufacturing (1.48%)\18. Garments, Footwear and Related Products (1.55%) \ 43. Recycling and Disposal of Waste (1.56%)\ 42. Manufacturing, n.e.c. (1.57%) \20. Timber Processing and Related Products (1.72%) \24. Cultural,Edu. and Sport Goods (2.61%) \ 17. Textiles (2.74%) \13. Food Processing (3.77%) \ 34. Metal Products (3.86%) }}
& \multicolumn{2}{l}{%
\begin{tabular}[c]{@{}l@{}}\makecell[l]{19. Leathers,Furs and related products (4.17%) \18. Garments, Footwear and Related Products (5.39%)\ 42. Manufacturing, n.e.c. (5.67%) \24. Cultural,Edu. and Sport Goods (5.87%) \ 17. Textiles (6%) \21. Furniture Manufacturing (7.67%)\20. Timber Processing and Related Products (7.76%) \29. Rubber Products (9.88%) \31. Nonmetal Mineral Products (10.01%)\30. Plastic Products (10.02%)}
\end{tabular}} \
\hline
\end{tabular}
\end{threeparttable}
\end{table}
\end{document}
