/* Basic layout and styles for the timeline */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

#timeline-container {
    flex: 1;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
}

/* Responsive design */
@media (max-width: 768px) {
    #timeline-container {
        height: 80vh; /* Adjust height for smaller screens */
    }
}