Does anyone how to hide these objects using CSS:

I'm using the following code:
/** Remove Checklists from My Team Page */
dcb-ui-tabs-horizontal-header-item[data-dcb-ui-aria-label="Checklists "] {
display: none;
}
/** Remove Team Members from My Team Page */
dcb-ui-tabs-horizontal-header-item[data-dcb-ui-aria-label="Team Members "] {
display: none;
}
/* Hide 'Users - Learning Paths from Reports in My Team Page */
.hyd-table-row:nth-child(2){
display: none !important;
}
/* Hide 'Users - Certifications from Reports in My Team Page */
.hyd-table-row:nth-child(3){
display: none !important;
}
/* Hide 'Users - Sessions from Reports in My Team Page */
.hyd-table-row:nth-child(4){
display: none !important;
}
But for some reason, it hides upcoming sessions on courses as well.
Any advice? 😥
Thank you in advance