Need some help in CSS

Hello everyone!

I’m trying to add some text in the inbox section of the users and i think there’s a slight error in my code, can anyone help? Basically there’s a wording in the inbox section on top of the content box that says " Write a reply " (See image below). I would like to add the text " No spam please " next to that wording using CSS. So i tried the code below but it’s not working. If i remove the [write a reply:] it will work and add the text but accross the entire website labels. I need the text to be added just next to “Write a reply” in the inbox section. Can anyone help in correcting the code below, i’m not an expert just trying to get this fixed. Thank you!

.label[Write a reply:]::after {
content: ‘No spam please’;
font-weight: bold;
color: red;
}