﻿/* Fullscreen.css */
.pseudo-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    background-color: #ffffff; /* رنگ پس‌زمینه آزمون */
    overflow: hidden !important;
}

/* برای اطمینان از اینکه در موبایل‌ها اسکرول ناخواسته نداشته باشیم */
body.pseudo-fullscreen {
    overflow: hidden !important;
    touch-action: none; /* جلوگیری از زوم یا حرکت ناخواسته در موبایل */
}
