/* Page styles for templates/workflow_details.html. Extracted from an inline <style> block. */
.flowchart {
    position: relative;
    padding: 1rem 0;
}
.flow-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
}
.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 56px;
    bottom: -8px;
    width: 2px;
    background: var(--bs-border-color);
}
.flow-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.flow-step-content {
    flex: 1;
    padding-top: 0.5rem;
}
.flow-step-label {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.flow-step-detail {
    color: var(--bs-secondary-color);
    font-size: 0.9rem;
}
.tip-card {
    border-left: 3px solid;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: var(--bs-tertiary-bg);
    border-radius: 0 0.375rem 0.375rem 0;
}
