/* top | right | bottom | left */

.book-entry-wrapper {
    display: flex;
    background-color: var(--foregroundcolor);
    border-radius: 30px;
    border-color: var(--maincolor);
    border-style: solid;
    border-width: 1px;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 10px;
    box-shadow: 2px 2px  var(--accentcolor);
}

.book-entry-wrapper p {
    padding: 0px 10px 0px 10px;
}

.book-entry-wrapper embed {
    scrollbar-width: 0;
}

.book-entry-wrapper h2 {
    padding-left: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.book-description-content::after {
    content: "";
    display: table;
    clear: both;
}  

.book-description-content {
    margin: 0px 20px 20px 20px;
}

/* .book-buy-button {
    width: 15%;
    margin-bottom: 10px;
} */

@media (max-width: 600px) {
    .book-image {
        float: center;
        margin: 0px 10px 10px 10px !important;
        width: 200px;
        height: 200px;
        border-radius: 10%; 
        object-fit: cover; 
    }

    .book-button-bar {
        display: flex;
        margin: 5px 5px 5px 5px;
        flex-direction: column;
        flex-flow: column;
        
        width: 85%;
        height: auto;
        justify-content: center;
        justify-items: center;
        align-self: center;
        gap: 10px; 
        box-sizing: border-box;

    }

    .book-button-bar a {
        height: auto;
    }

    .book-button-bar-wrapper {
        display: flex;
        justify-content: center;
    }

}
@media (min-width: 601px) {
    .book-image {
        float: left;
        margin: 0px 10px 10px 10px !important;
        width: 200px;
        height: 200px;
        border-radius: 10%; 
        object-fit: cover; 
    }

    .book-button-bar {
        margin: 5px 5px 5px 5px;
        justify-self: center;
        justify-content: center;
        flex-direction: row;
        display: flex;
        gap: 10px;
    }

    .book-button-bar-wrapper {
        justify-content: center;
    }
}

/* top | right | bottom | left */