* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding-bottom: 5px; /* Added padding to the bottom of the screen */
  position: fixed; /* Prevent iOS Safari bounce effect */
  overflow: hidden;
  background-color: #ffffff; /* Ensures bottom bar takes this color */
}

#container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 5px; /* Updated to account for the bottom padding */
  overflow: hidden;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  /* Prevent iOS pinch zoom on iframe */
  touch-action: manipulation;
}
