/* Force all content to start at top on navigation */
html {
  scroll-behavior: auto !important;
}

/* Disable scroll anchoring that might interfere */
body, html {
    overflow-anchor: none !important;
}

/* Ensure Blazor app starts at top */
#app::before {
content: '';
    display: block;
    height: 0;
    width: 0;
 position: absolute;
    top: 0;
    left: 0;
}

/* Force focus to top of page */
#app:focus {
    scroll-margin-top: 0 !important;
}

/* Disable any smooth scrolling that might interfere */
* {
    scroll-behavior: auto !important;
}
