@tailwind base; @tailwind components; @tailwind utilities; html, body { height: 100%; /* Ensure full viewport height */ width: 100vw; overflow: hidden; /* Prevent body scrolling */ /* Add your background color or other styles here */ } /* Define a container for your React app */ #root { display: flex; height: 100%; /* Ensure full viewport height */ width: 100vw; overflow: hidden; /* Prevent container scrolling */ }