Change css specifically for one page

Hello!

I managed to change the position and color of the arrows allowing to switch between pages with this code:

.left, .right { top: 4% !important; /* Adjust this percentage to change the height position */ } .right>.sprite, .left>.sprite { background-image: none !important; } .left:after { color: #4FF489 !important; content: '<' !important; font-size: 40px; } .right:after { color: #4FF489 !important; content: '>' !important; font-size: 40px; }

I would like to change arrows color regarding the section of my website. Chat gpt gave me an idea, I should to like this:

}
body[data-page=“dubochet”] { --arrow-color: #FFF86B; }

But how do I know the data-page?

Thanks for your answers