/* body {
    background-color: #f8f9fa;
} */

.book-card {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

.book-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-body {
    text-align: center;
}

.btn-custom {
    background-color: #007bff;
    color: white;
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-custom:hover {
    background-color: #0056b3;
}

a.custom {
    background-color: #FB9418;
    color: white;
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: bold;
    transition: 0.3s;
}

a.custom:hover {
    background-color: #fb9418c4;
    color: white;
}


.price {
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
}

.stars {
    color: #f5c518;
}