/* Fix Accessibility: Add underlines to links so they are visible to colorblind users */
a {
    text-decoration: underline !important; 
}

/* Optional: Remove underline on hover for a cleaner interaction */
a:hover {
    text-decoration: none !important;
}

/* Ensure focus states are high contrast */
a:focus, button:focus {
    outline: 2px solid #0052CC; /* Atlassian Blue */
    outline-offset: 2px;
}