/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 20 2025 | 15:48:48 */
/* Prevent horizontal scroll on all devices */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Default scroll button positioning (e.g., bottom right for desktop) */
.inner-scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

/* Override position on phones and tablets */
@media (max-width: 1024px) {
  .inner-scroll-top {
    left: 15px !important;
    right: auto;
  }
}
