/* assets/css/global.css */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background-color: #050505;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    
    /* THE FIX: Allow natural vertical scrolling, block horizontal bleeding */
    overflow-x: hidden !important;
    overflow-y: auto !important; 
    -webkit-font-smoothing: antialiased;
}

#baocine-app-root {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    
    /* THE FIX: Remove any height restrictions or overflow hiding here */
    height: auto !important;
    overflow: visible !important; 
}