main {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.book-details {
    text-align: center;
}

.book-title {
    font-size: 28px;
    margin-top: 0;
}

.book-summary {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
}

.action-buttons {
    display: flex;
    justify-content: center;
}

.read-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    text-decoration: none;
    background-color: #993354;
    color: #FFFFFF;
    border-radius: 4px;
    font-size: 18px;
}
.download-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    text-decoration: none;
    background-color: #33997c;
    color: #FFFFFF;
    border-radius: 4px;
    font-size: 18px;
}

.read-button:hover,
.download-button:hover {
    background-color: #204466;
}

@media screen and (max-width: 480px) {
    .book-title {
        font-size: 24px;
    }

    .book-summary {
        font-size: 14px;
    }

    .read-button,
    .download-button {
        font-size: 16px;
        padding: 8px 16px;
    }
}

/* styles.css */
/* ... other styles ... */

.book-slide {
    flex: 0 0 auto;
    width: 65vw; /* Adjust the width as needed */
    padding: 20px;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin-right: 10px;
    transition: transform 0.3s;
    text-decoration: none;
    color: black;
    cursor: pointer;
}
@media screen and (min-width: 600px) {
    .book-slide {
        width: 300px !important;
    }
}
.book-slide:last-child {
    margin-right: 0;
}

.book-slide:hover {
    transform: scale(1.05);
}

.book-slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.book-slide i {
    font-size: 30px;
    color: #88A3F4;
}

.book-slide-title {
    font-size: 16px;
    margin-top: 10px;
}

.book-slider-container {
    overflow: hidden;
}

.book-slider {
    display: flex;
    width: fit-content;
    transition: transform 0.5s;
}

.slider-nav-prev,
.slider-nav-next {
    background: none;
    border: none;
    font-size: 24px;
    color: #336699;
    cursor: pointer;
    outline: none;
    transition: color 0.3s;
}

.slider-nav-prev:hover,
.slider-nav-next:hover {
    color: #204466;
}

.slider-navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
