Need help making my hyperlinks visible in my CMS blog entries

I am having trouble getting the hyperlinks in my CMS blog entry to show up as a different color so they are recognized, or to even have an underline on it. They work, but they look like regular text.

The hyperlinks are at the end of bullet points in a list in the blog entry. To get the bullet point entries to work, I had to inject CSS code that defines the bullets as grey text.

What is the CSS code, and where would I put it to have hyperlinks in my blog entries to show up in blue with an underline? Any help is appreciated

Take a quick look at this page.

an than, play around with it a bit. You can adjust the color (Tailwind) as needed.

[&_ul_a]:text-blue-600
[&_ul_a:hover]:text-blue-800

----

[&_ul]:list-disc
[&_ul]:pl-5
[&_ul]:space-y-2
[&_ul_li]:leading-relaxed
[&_ul_li]:text-gray-800

[&_ul_a]:text-blue-600
[&_ul_a:hover]:text-blue-800
[&_ul_a]:underline-offset-2
[&_ul_a:hover]:underline

Bingo! It worked! Many thanks to you!!!