/* Styles critiques du shell HTML (évite un bloc <style> inline pour la CSP). */
html,
body {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body {
  overflow-y: scroll;
}

body::-webkit-scrollbar {
  width: 0;
}
