/* css styles */
/* Bootstrap 5 tweak: do not underline links unless hovered over 
 * Taken from here: https://stackoverflow.com/questions/65480036/bootstrap-5-underline-default-changed 
 */
a:not([class*="btn"]) {
    text-decoration: none;
}
a:not([class*="btn"]):hover {
    text-decoration: underline;
}