/* Scrollbar styling */
.timeline-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.timeline-container::-webkit-scrollbar-track {
    background: var(--hover-color);
}

.timeline-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.timeline-container::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

