#notebook-flip-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 10px;
    background-color: transparent;
    width: 100%;
    overflow: hidden; /* Prevents scrollbars if the book is too wide on mobile */
}

.my-page {
    background-color: #ffffff;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.05); /* Soft paper shadow */
}

.my-page img {
    object-fit: cover;
    display: block; /* Removes tiny gaps below images */
}
/* Hide the popup overlay by default */
#aditya-modal-overlay {
    display: none; /* This is what stops the images from stacking on your page! */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85); /* Dark background */
    z-index: 999999; /* Makes sure it floats on top of everything */
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Style the close button */
#aditya-close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 1000000;
}

/* Keep your existing styles below */
#notebook-flip-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.my-page {
    background-color: #ffffff;
}
.my-page img {
    object-fit: cover;
    display: block;
}