body{
    background-image: url('../images/bg-pattern2.png');
    background-repeat: repeat;
}
.wrapper-book {
    position: relative;
    min-height: 100vh;
    border: solid 5px #fff;
    max-width: 1100px;
    display: block;
    margin: 0 auto;
    overflow-y: auto;
    background-color: white;
    z-index: 0;
    border-radius:30px;
}
    .wrapper-book a{
    color:#6d8e34;
    }

/* LEFT side */
.wrapper-book::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 150px; /* Atur sesuai lebar gambar */
    background-image: url('../images/bg-green-left4.png');
    background-repeat: repeat-y;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

/* RIGHT side */
.wrapper-book::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 150px; /* Atur sesuai lebar gambar */
    background-image:url('../images/bg-green-right.png');
    background-repeat: repeat-y;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

/* TOP and BOTTOM decorations */
.bg-top{
    position: absolute;
    left: 0;
    right: 0;
    height: 151px;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 1;
    pointer-events: none;
}
.bg-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 201px;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-top {
    top: 0;
    background-image: url('../images/bg-green-top.png');
}

.bg-bottom {
    bottom: 0;
    background-image: url('../images/bg-green-bottom.png');
}
.wrapper-book .content{
    padding: 150px 180px 200px 180px;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom:20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    font-size: 14px;
    min-width: 600px;
}

th, td {
    border: 1px solid #ccc; /* border halus */
    padding: 8px 12px;
    text-align: left;
}

th {
    background-color: #f9f9f9;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f5f5f5; /* baris bergantian */
}

tr:hover {
    background-color: #eef; /* efek hover */
}
.author{
	font-size:18px;
}

@media only screen and (max-width: 767px) {
    .wrapper-book::before {
        width:40px;
    }
    .wrapper-book::after {
        width:40px;
    }
    .bg-top{
        height:40px;
    }
    .bg-bottom{
        height:40px;
    }
    .wrapper-book .content{
        padding: 50px 50px;
    }
    .wrapper-book .content a{
        overflow-wrap: anywhere;
    }
    .content h3{
        font-size:18px;
    }
    .content h4{
        font-size:16px;
    }
    .wrapper-book .content iframe{
        width:100%;
        height:180px;
    }
    .wrapper-book .content p{
        font-size:14px;
    }
}