/* This forces a vertical scrollbar to always be present, 
   preventing layout shifts when switching between pages */
html {
  overflow-y: scroll; /* Ensures a consistent scrollbar presence */
}
body {
  min-height: 100vh; /* Ensures full screen height */
}