/* Stop Auto Scroll on Main Screen */
html, body {
    scroll-behavior: auto !important;
    overflow-x: hidden;
}

/* Prevent smooth scrolling animations */
* {
    scroll-behavior: auto !important;
}

/* Stop auto scroll to sections */
body {
    scroll-snap-type: none !important;
}

/* Remove any scroll animations */
.learning-levels,
.quick-access-section,
.progress-dashboard {
    scroll-behavior: auto !important;
    scroll-snap-align: none !important;
}

/* Prevent automatic scrolling on focus */
input, button, select, textarea {
    scroll-margin: 0 !important;
}

/* Stop intersection observer auto scroll */
.level-card,
.quick-card,
.progress-card {
    scroll-margin: 0 !important;
    scroll-snap-align: none !important;
}

/* Disable any CSS scroll animations */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: auto !important;
    }
}

/* Force no scroll behavior */
html {
    scroll-behavior: auto !important;
}

/* Stop any programmatic scrolling */
body, html {
    scroll-padding: 0 !important;
    scroll-margin: 0 !important;
}