/* L2D Azure AI Theme - Nav Bar Styles */
/* Gradient horizontal timeline */
.timeline-summary {
    margin: 40px 0;
    position: relative;
}

.timeline-summary::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.timeline-points {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    text-align: center;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background-color: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.timeline-marker svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
}

.timeline-point:nth-child(2) .timeline-marker {
    border-color: #e5517a;
}

.timeline-point:nth-child(2) .timeline-marker svg {
    fill: #e5517a;
}

.timeline-point:nth-child(3) .timeline-marker {
    border-color: var(--secondary);
}

.timeline-point:nth-child(3) .timeline-marker svg {
    fill: var(--secondary);
}

.timeline-title {
    font-weight: 600;
    color: var(--third-dark);
    margin-bottom: 8px;
}

.timeline-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}