/* Remove default margins and padding */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Ensure the page takes full screen */ html, body { width: 100%; height: 100vh; overflow: hidden; /* Prevents extra scrolling */ background-color: #ffffff; /* Adjust if needed */ } /* Force the seller dashboard to take up the entire screen */ #st_result { width: 100%; height: 100vh; /* Make it full height */ display: flex; justify-content: center; align-items: center; }