Hi! I have this piece of CSS that automatically assigns a specific color to the input fields inside each odd row and the row itself: div .repitem:nth-child(odd), div .repitem:nth-child(odd) input, div .repitem:nth-child(odd) select { background-color: #81BEF7; } This works so far. Now I want to add repeating sections with another color pattern without changing the old color pattern (so I can have repeating sections with different patterns in the sheet). Having still problems with CSS I'm wondering how to achieve this (that other repeating sections, for example with another class, have another color pattern). I thought about something like div .repitem:nth-child(odd) > .newPattern, div .repitem:nth-child(odd) > .newPattern input, div .repitem:nth-child(odd) > .newPattern select { background-color: #C7EAFF; } but that didn't work. I can assign a specific background-color to a specific repeating section with [data-groupname=repeating_specificsection] { background-color: red; } but this didn't work for the input-fields inside. And I'm pretty sure there is a more elegant way than assigning the color pattern to each repeating section individually. Can someone here help me with this? That would be awesome. Cheers!