/**
 * @file
 * Base element styles to prevent horizontal overflow and ensure proper mobile display.
 */

/* Reset and base styles for mobile responsiveness */
/** {*/
/*  box-sizing: border-box;*/
/*}*/



/* Container styles to prevent overflow */


/* Ensure all images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Mobile specific fixes */
@media (max-width: 767.98px) {

  html {
    overflow-x: hidden;
    width: 100%;
  }

  body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Prevent any element from causing horizontal scroll */
  * {
    max-width: 100%;
  }
}
