<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* styles.css */
body {
    font-family: 'Noto Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: var(--primary-color-dark);
}

.container {
    width: 95%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    margin: 25px 0px;
    box-sizing: border-box;
}

header {
    text-align: center;
}

header h1 {
    color: #3498db;
    margin-bottom: 10px;
}

.meta {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    font-size: 18px;
    flex-direction: column;
}

.meta a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.meta a:hover {
    color: var(--highlight-color);
    background-color: #ffffff00;
}

.book-info {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    text-align: left;
    flex-wrap: wrap;
}
.book-info .content{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.image {
    overflow: hidden;
    margin-right: 25px;
    max-width: 400px;
}

.image img {
    width: 100%;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.info {
    flex: 2;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.keywords, .description {
    margin-top: 10px;
}

h2 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: left;
    background-color: transparent !important;
}

.keyword {
    margin-right: 10px;
    padding: 8px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 5px;
}
.keywords :hover{
    background-color: var(--primary-color-dark);
}
.description-mobile,.description-desktop p {
    line-height: 1.6;
}
.description-mobile{
    display: none;
}
.recommendations {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.recommendations h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
    margin-left: 15px;
}

.recommendations .book-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.recommendation {
    text-align: center;
    margin: 20px 15px;
    cursor: pointer;
    transition: transform 0.2s;
    max-width: 250px;
}

.recommendation:hover {
    transform: scale(1.05);
}

.recommendation img {
    border-radius: 8px;
    margin-bottom: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.recommendation p {
    font-size: 20px;
    margin: 0;
}
.cover {
    position: relative;
    overflow: hidden; /* Ensure child buttons do not overflow outside the image */
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0; /* Hide initially */
    transition: opacity 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    font-size: 35px;
}

/* Show buttons on hover */
.cover:hover .overlay {
    opacity: 1;
    cursor: pointer;

}
.buttons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
}

/* Style the icon buttons */
.buttons button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    margin: 0 5px;
    color: var(--primary-color);
    transition: color 0.3s ease-in-out;
}

.buttons button:hover {
    color: var(--primary-color-dark); 
}
#bookmarkButton.active {
    color: #e32b2b;
}
#book-container {
     /* Use viewport height for full page height */
     margin: 0 !important;
     width: 100%;
     height: 100vh;
     background-color: #0000007d;
     display: flex;
     justify-content: center;
     position: fixed;
     top: 0%;
     align-items: center;
     z-index: 2;
  }
#close-book:hover {
    color: #ff0000; /* Change color on hover if desired */
}
.close {
    position: fixed;
    right: 2%;
    top: 1%;
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
  }
  .close:hover {
    opacity: 0.8;
  }
  .close:before, .close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 34px;
    width: 3px;
    background-color: #ffffff;
  }
  .close:before {
    transform: rotate(45deg);
  }
  .close:after {
    transform: rotate(-45deg);
  }
  #book {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    /* background-color: #bdbdbd47; */
    z-index: 999; /* Set a high z-index to ensure it's on top */
    justify-content: center;
    align-items: center;
  }
  
  .page {
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: border-box;
    background-clip: border-box;
  }
.title-desktop,.title-mobile{
    
font-size: 30px;
color: var(--primary-color);
}
.title-mobile{
    display: none;
}

.page-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
}

#prevPage {
    left: 10px;
}

#nextPage {
    right: 10px;
}


@media only screen and (max-width: 1100px) {
    .description-desktop{
        display: none;
    }
    .description-mobile{
        display: block;
        padding-left: 20px;
    }
    .book-info{
        flex-direction: column;
    }


}
@media only screen and (max-width: 750px) {
    .title-desktop{
        display: none;
    }
    .title-mobile{
        display: block;
        margin: auto;
        margin-bottom: 10px;
    }
    .book-info .content{
        flex-direction: column;
        width: 100%;
    }
    .image{
        margin: auto;
    }
    .recommendations .book-container{
        justify-content: center;

    }

}
</pre></body></html>