/* Prevent Multistep Form from forcing the page to scroll on load */
.no-autoscroll {
    /* Prevent browser scroll anchoring when dynamic content loads */
    overflow-anchor: none;

    /* Prevent automatic scroll adjustments caused by focus */
    overscroll-behavior: contain;

    /* Ensure no smooth scrolling animations interfere */
    scroll-behavior: auto !important;
}
