Table type is not pulling all of the info I need

I'm new to webscraper & I am trying to scrape table data from the URL below:

https://www.tourneymachine.com/Public/Results/Division.aspx?IDTournament=h20240429124922111d79136f2f5f04f&IDDivision=h20240529201119494da5b220bd4124f

The targeted table is under schedule. Everything seems to work great besides the "Team" column. For some reason this column will not populate any data.

{"_id":"midwest-prime-2024","startUrl":["https://www.tourneymachine.com/Public/Results/Tournament.aspx?IDTournament=h20240429124922111d79136f2f5f04f"],"selectors":[{"id":"2025","linkType":"linkFromHref","multiple":false,"parentSelectors":["_root"],"selector":"a#ui_Division_Repeater_ctl00_ui_Division_HyperLink","type":"SelectorLink"},{"columns":[{"extract":true,"header":"Game","name":"Game"},{"extract":true,"header":"Time","name":"Time"},{"extract":true,"header":"Location","name":"Location"},{"extract":true,"header":"Team","name":"Team"},{"extract":false,"header":"Score","name":"Score"},{"extract":true,"header":"Team","name":"Team2"}],"id":"Saturday schedule","multiple":true,"parentSelectors":["2025"],"selector":".table-responsive table","tableDataRowSelector":"tr.schedule_row.date_20240608","tableHeaderRowSelector":"tr.schedule_header_row.date_20240609:nth-of-type(2)","type":"SelectorTable"}]}

I found if I select one level parent of the header - thead:nth-of-type(2), the data I am looking for is pulled.

It for some reason is not all under the correct columns, but after some manual tweaking it is doing what I want it to do.