.btn-status:hover {
    transform: scale(1.05);
    transition: transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}
#reviewsCarousel {
    position: relative;
}
#reviewsCarousel .carousel-control-prev,
#reviewsCarousel .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

#reviewsCarousel .carousel-control-prev {
    left: 10px;
}

#reviewsCarousel .carousel-control-next {
    right: 10px;
}

#booksCarousel {
    position: relative;
}
#booksCarousel .carousel-control-prev,
#booksCarousel .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

#booksCarousel .carousel-control-prev {
    left: 10px;
}

#booksCarousel .carousel-control-next {
    right: 10px;
}

.review-card {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.book-cover {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dee2e6;
    display: block;
    margin-bottom: 1rem;
}

.book-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

#booksCarousel .card {
    width: 300px;
    flex-shrink: 0;
}


