.timeline-container-b41d79ba {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 30px 10px;
}

/* Hide scrollbars but keep functionality */
.timeline-container-b41d79ba::-webkit-scrollbar {
    height: 6px;
}
.timeline-container-b41d79ba::-webkit-scrollbar-track {
    background: transparent;
}
.timeline-container-b41d79ba::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.12);
    border-radius: 4px;
}

.timeline-wrapper-b41d79ba {
    position: relative;
    min-width: max-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

/* Horizontal line sits perfectly behind the middle of the nodes */
.timeline-line-b41d79ba {
    position: absolute;
    top: 40px; /* Aligns vertically with the exact middle of the 40px node wrappers */
    left: 70px; /* Start in the middle of first item */
    right: 70px; /* End in the middle of last item */
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-items-b41d79ba {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.timeline-item-b41d79ba {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
    flex: 1;
}

.timeline-node-wrapper-b41d79ba {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

/* Direct styling on nodes + Interactive states */
.timeline-link-wrapper-b41d79ba {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    outline: none;
}

.timeline-node-b41d79ba {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid #1a1a1a;
    box-sizing: border-box;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
    cursor: pointer;
}

/* Hover dynamic popping effect */
.timeline-node-b41d79ba:hover {
    transform: scale(1.25);
    box-shadow: 0px 4px 10px rgba(0,0,0,0.25);
}

.timeline-node-b41d79ba.node-featured-b41d79ba {
    width: 32px;
    height: 32px;
    border-width: 4px;
}

/* Special hover state to keep offset featured shadow but make it shift slightly */
.timeline-node-b41d79ba.node-featured-b41d79ba:hover {
    transform: translate(-3px, -3px) scale(1.15);
}

.timeline-node-b41d79ba.node-dashed-b41d79ba {
    border: 3px dashed #1a1a1a;
    background-color: transparent !important;
}

.timeline-content-b41d79ba {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-date-b41d79ba {
    font-weight: 700;
    font-size: 16px;
}

.timeline-location-b41d79ba {
    font-size: 14px;
}
