/* Khu vực đọc sách */
#reader-container {
    position: absolute;
    top: 50px;
    bottom: 30px; /* Chừa chỗ cho footer */
    left: 0;
    right: 0;
    background-color: #fff;
    overflow: hidden;
}

/* Các vùng chứa nội dung (Viewer) */
#pdf-viewer, #epub-viewer {
    width: 100%;
    height: 100%;
    display: none;
    overflow: hidden; /* Việc cuộn/chuyển trang sẽ do JS lo */
    position: relative;
}

#pdf-canvas {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

/* Vùng cảm ứng chuyển trang (Touch Zones) - Lấy cảm hứng từ Kindle */
.nav-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30%;
    z-index: 10;
    cursor: pointer;
    /* background-color: rgba(255, 0, 0, 0.1); Chỉ mở khi cần debug vùng bấm */
}

#zone-left { left: 0; }
#zone-right { right: 0; }
