/* PB_PREVIEW_STAGE_V1 - stable 16:9 preview that plays any aspect ratio cleanly */

.pb-preview-stage{
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #050505;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.pb-preview-stage video{
  width: 100%;
  height: 100%;
  object-fit: contain;     /* FIT: no cropping */
  background: #050505;
}

/* Optional: toggle to fill (crop) */
.pb-preview-stage[data-fit="fill"] video{
  object-fit: cover;
}

/* PB_PREVIEW_FIT_V1 (append)
   Default: preserve aspect ratio (no stretching)
*/
.pb-preview-stage video,
#pbPlayer{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #000 !important;
}
