html, body {
    touch-action: manipulation;
}
/* General Styles */
body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full height for centering */
    background-color: #f0f0f0;
}

/* Wrapper */
#flipbook-wrapper {
    width: 90vw; 
    height: 90vh; 
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
/*    background-color: white; */
}

/* Flipbook */
#flipbook {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
   /* background-color: green;*/
}


.page {
    transition: background-position 0.3s ease-in-out;
}

.page {
    width: 100%; /* Fit the container */
  
    object-fit: contain; /* Ensure image scales to fit without cropping */
    display: block; /* Prevent inline spacing */
}