/* CRITICAL SCROLLBAR FIX */
:root,
html,
body,
#root {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
}

html {
    overflow-y: auto;
}

body {
    position: relative;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

#root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app-wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Prevent animations from causing overflow */
.animate-twinkle-slow,
.animate-twinkle-medium,
.animate-twinkle-fast {
    overflow: hidden !important;
    max-width: 100vw !important;
}