/**
 * Timeline Link Fix - MINIMAL FIX: ONLY Remove Blue Underlines
 * 
 * ONLY removes text-decoration: underline - DOES NOT TOUCH ANY OTHER STYLING
 */

/* MINIMAL FIX: Only remove blue underlines, preserve ALL existing styling */
.cyber-folder-link,
.timeline-folder-link,
a.cyber-folder-link,
a.timeline-folder-link {
    text-decoration: none !important;
}

.cyber-folder-link:hover,
.timeline-folder-link:hover,
a.cyber-folder-link:hover,
a.timeline-folder-link:hover {
    text-decoration: none !important;
}

/* Only remove underlines from timeline section links - preserve all other styling */
.tab-content#timeline a,
#timeline a,
.timeline-section a {
    text-decoration: none !important;
}

.tab-content#timeline a:hover,
#timeline a:hover,
.timeline-section a:hover {
    text-decoration: none !important;
}
