/* Mobile overrides for iframe popup modal */
/* Place after popup-modal.css */

@media (max-width: 768px) {
  .iframe-popup-modal {
    max-width: 94vw;
    max-height: 90vh;
    border-radius: 12px;
  }
  .iframe-popup-frame {
    width: 94vw;
    height: 90vh;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .iframe-popup-modal {
    max-width: 96vw;
    max-height: 92vh;
    border-radius: 10px;
  }
  .iframe-popup-frame {
    width: 96vw;
    height: 92vh;
    border-radius: 10px;
  }
}
