/* Remove underline from all links */
a, 
a:hover, 
a:focus, 
a:active {
    text-decoration: none !important;
}

/* Add a subtle hover effect for better UX */
a {
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #0d6efd !important; /* Bootstrap primary color */
}
