/*
 * PayStubCheck: Basic + Premium static live-preview fit
 *
 * Scope:
 * - Removes the INTERNAL scrollbar from the static on-page preview only.
 * - Lets the complete document determine the preview card height.
 * - Does not affect the click-to-zoom lightbox.
 */
body[data-doc-type="basic_stub"] #preview-body,
body[data-doc-type="premium_stub"] #preview-body {
  max-height: none !important;
  height: auto !important;
  overflow: hidden !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body[data-doc-type="basic_stub"] #preview-body::-webkit-scrollbar,
body[data-doc-type="premium_stub"] #preview-body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

