/* Remove underline from all standard text links globally */
a {
    text-decoration: none !important;
}

/* Optional: Add the underline back only when a user hovers over the link */
a:hover {
    text-decoration: underline !important;
}