/* Custom timeline styles */
.timeline {
    font-family: Arial, sans-serif;
}

.timeline-marker {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8);
    transition: transform 0.2s ease;
}

.timeline-section:hover .timeline-marker {
    transform: scale(1.2);
}

.timeline-label-text {
    font-weight: bold;
    margin-bottom: 40px;
}

.timeline-label-value {
    font-size: 0.9em;
    opacity: 0.8;
}

.timeline-highlight .timeline-marker {
    box-shadow: 0 0 0 4px gold;
    transform: scale(1.3);
}

/* Custom theme for course timeline */
.course-timeline .timeline-line {
    background-color: #e0e0e0;
}

.course-timeline .timeline-label {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}