.book-review-container {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 20px;
    display: table;
    width: 100%;
    border-collapse: collapse; /* Add this line */
}

.Col1 {
    display: table-cell;
    width: 300px;
    text-align: center;
    padding: 10px;
    border-right: 1px solid #ddd; /* Add this line */
}

.Col2 {
    display: table-cell;
    width: 50%;
    text-align: justify;
    vertical-align: top;
    padding: 10px;
    line-height: 1.5;
}

.book-images img {
    max-width: 100%;
    max-height: 190px; 
}

.book-title {
    font-weight: bold;
}

.book-review {
    font-size: 16px;
}

.book-stars, .book-time {
    margin-top: 10px;
    font-style: italic;
}

.star-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

@media only screen and (max-width: 428px) {
    .Col1 {
        width: 100%; /* Adjust as needed */
        display: block;
        border-right: none; /* Remove right border on smaller screens */
    }

    .Col2 {
        width: 100%; /* Adjust as needed */
        display: block;
    }

    .book-images img {
        max-width: 200px;
        max-height: none; /* Allow the image to exceed the specified height */
    }
}
