.lbp-book-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.lbp-book {
    border: 1px solid #ddd;
    padding: 10px;
    width: 300px;
}

.lbp-book-image img {
    max-width: 100%;
    height: auto;
}

.lbp-book-container {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.lbp-book-image {
    flex: 0 0 200px; /* Fixed width for the image */
}

.lbp-book-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.lbp-book-details {
    flex: 1; /* Takes remaining space */
}

.lbp-book-details h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

.lbp-book-details p {
    margin: 5px 0;
}

.lbp-buttons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.lbp-buttons a {
    padding: 5px 10px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

.lbp-buttons a:hover {
    background-color: #005177;
}

.lbp-buttons i {
    margin-right: 5px;
}

.lbp-counts {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.lbp-counts span {
    font-size: 14px;
    color: #333;
}

.lbp-counts i {
    margin-right: 5px;
}