/* Put any custom CSS rules here */

/* Remove underlines from ALL links globally */
a {
    text-decoration: none !important;
    border-bottom: none !important; /* Removes fake underlines */
    box-shadow: none !important;    /* Removes shadow-based underlines */
}

/* Optional: Restore underline on hover for usability */
a:hover {
    text-decoration: underline !important;
}
}   