.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    position: relative;
    margin: 0rem;
    text-align: center;
}
.timeline-dot {
    top: -21px;
    width: 12px;
    height: 12px;
    background-color: #0d6efd;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}
.timeline-year {
    font-weight: bold;
    font-size: 1.1rem;
    color: #495057;
}

/* Timeline container layout extracted from inline styles */
.timeline-horizontal {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding: 2rem 0;
}
.timeline-line {
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #ccc;
    z-index: 0;
}
