#commonModal .modal-body {
  padding: 0;
  /* Explicitly allow scroll on the modal body, but we hide the scrollbar track */
  overflow-y: auto;
  /* Hide scrollbar for Firefox and removes the width space */
  scrollbar-width: none;
}

/* Hide scrollbar track for Webkit browsers (Chrome, Safari, Edge) on the modal body */
#commonModal .modal-body::-webkit-scrollbar {
  display: none;
  width: 0; /* Removes the scrollbar space */
}

/* 2. REVERT IFRAME STYLES (Allow inner scrollbar to show if content is long) */
#commonModalIframe {
  width: 100%;
  border: 0;
  height: 100%;
  min-height: 600px;
  /* Removed scrollbar-width and ::-webkit-scrollbar styles here
     so the content loaded inside the iframe can scroll naturally. */
}


#commonModal1 .modal-body {
  padding: 0;
  /* Explicitly allow scroll on the modal body, but we hide the scrollbar track */
  overflow-y: auto;
  /* Hide scrollbar for Firefox and removes the width space */
  scrollbar-width: none;
}

/* Hide scrollbar track for Webkit browsers (Chrome, Safari, Edge) on the modal body */
#commonModal1 .modal-body::-webkit-scrollbar {
  display: none;
  width: 0; /* Removes the scrollbar space */
}

/* 2. REVERT IFRAME STYLES (Allow inner scrollbar to show if content is long) */
#commonModalIframe1 {
  width: 100%;
  border: 0;
  height: 100%;
  min-height: 900px;
  /* Removed scrollbar-width and ::-webkit-scrollbar styles here
     so the content loaded inside the iframe can scroll naturally. */
}