Render Flow - Tooltip component
[Load HTML with data-bs-toggle="tooltip"] -> [Bootstrap JS scans for tooltip triggers] -> [Attach event listeners (hover/focus)] -> [On hover/focus: create tooltip element] -> [Calculate position near target] -> [Show tooltip with fade animation] -> [On mouse out/blur: hide tooltip]
The browser loads the HTML with tooltip triggers. Bootstrap's JavaScript finds these triggers, attaches event listeners, and when the user hovers or focuses, it creates and positions the tooltip element near the target, showing it with a fade effect.