/* css/book-flip.css */

/* Kontainer Utama Buku */
#book {
    background-color: transparent; 
}

/* Base Styling untuk Setiap Lembar Halaman */
.page {
    background-color: #faf9f6; /* Warna kertas off-white premium */
    overflow: hidden;
    /* Tambahkan efek lipatan buku (spine) */
    box-shadow: inset -1px 0 5px rgba(0,0,0,0.05);
}

/* Kertas sebelah kiri (bayangan di kanan) */
.st-page--left .page {
    background: linear-gradient(to left, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0) 10%);
}

/* Kertas sebelah kanan (bayangan di kiri) */
.st-page--right .page {
    background: linear-gradient(to right, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0) 10%);
}

/* Konten di dalam halaman */
.page-content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Class nengahin konten */
.center-content {
    justify-content: center;
    align-items: center;
}

/* Kursor berkelas */
.st-page-flip {
    cursor: grab;
}
.st-page-flip:active {
    cursor: grabbing;
}