This is extremely late, but I was browsing css forums and thought there may be someone else wondering on how to do this.
So the status text alone doesn't have it's own class ID, it's in a <div> container along with the user bio. However, you can target the first paragraph in a div container by using this class ID:
.example p:first-of-type
So, changing just the status text color alone would be something like:
.details p:first-of-type {
color: black;
}
You can use this to change font, text decoration, size, etc.
If you don't know what counts as a paragraph in html, it's anything wrapped in these tags, eg:
<p>this is one paragraph</p>
<p>these are</p>
<p>two paragraphs</p>
Using this can allow for some pretty cool customizations, like even changing the font for specific words or sentences in your user bio or interests :)