/* Override the animated pulse loader with the favicon */
.animate-pulse.bg-muted.h-full.w-full.rounded-full {
    animation: none !important;
    background: url('/public/favicon.png') no-repeat center center !important;
    background-size: contain !important;
    border-radius: 0 !important;
}

/* Hide the small animated pulse indicator */
span.inline-block.h-3\.5.w-3\.5.bg-foreground.rounded-full.animate-pulse {
    display: none !important;
}

/* Make hyperlinks always underlined (not just on hover) */
/* Target links with hover:underline class using attribute selector */
a[class*="hover:underline"],
a.text-primary.hover\:underline {
    text-decoration: underline !important;
}

/* Ensure links stay underlined on hover as well */
a[class*="hover:underline"]:hover,
a.text-primary.hover\:underline:hover {
    text-decoration: underline !important;
}
