/* PWACheViet.Client/wwwroot/css/app.css or Styles/input.css */
/*@tailwind base;
@tailwind components;
@tailwind utilities;
*/
/* Your custom global styles from the original <style> tag can go here */
body {
    font-family: 'Inter', sans-serif;
    /* Default background for areas outside the app body, if any */
    background-color: #f0f0f0; /* Or use Tailwind bg-gray-100 on the body in index.html */
}

.app-container {
    max-width: 420px; /* Typical mobile width */
    margin: 0 auto;
    background-color: #ffffff; /* bg-white */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* shadow-lg or custom */
}

.main-content {
    flex-grow: 1;
    overflow-y: auto;
    padding-bottom: 70px; /* Space for bottom nav */
}

    /* Custom scrollbar (optional) */
    .main-content::-webkit-scrollbar {
        width: 6px;
    }

    .main-content::-webkit-scrollbar-thumb {
        background-color: #a0aec0; /* gray-500 */
        border-radius: 3px;
    }

    .main-content::-webkit-scrollbar-track {
        background-color: #edf2f7; /* gray-200 */
    }
/* Carousel Styles */

/* Helper to hide screens (Blazor manages this with conditional rendering) */
/* .hidden-screen { display: none !important; } */
