/* Customer profile header */
.customer-details-page .customer-profile-header {
    background: #f8f9fa;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    margin-top: 40px;
    text-align: center;
}

.customer-profile-flex {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 30px;
}

.customer-profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.customer-profile-text {
    text-align: left;
}

.customer-name {
    margin: 0 0 10px 0;
    font-size: 32px;
    color: #2A007C;
}

.customer-review-count {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.customer-description {
    color: #555;
    line-height: 1.6;
    margin-left: 180px;
    margin-bottom: 0px;
    text-align: left;
}

/* Author reviews list */
.author-reviews-list {
    max-width: 1200px;
    margin: 0 auto;
}

.author-reviews-title {
    margin-bottom: 30px;
    text-align: left;
    font-size: 24px;
}

.author-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.author-review-item {
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 8px;
    background: #fff;
}

.author-review-title-link {
    text-decoration: none;
}

.author-review-title {
    margin: 0 0 15px 0;
    color: #2A007C;
    font-size: 20px;
}

.review-book-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-book-cover {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.review-book-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.review-rating {
    margin-bottom: 15px;
}

.review-excerpt {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.author-review-read-more {
    color: #2A007C;
    text-decoration: underline;
    font-weight: 500;
}

.author-review-meta {
    margin-top: 10px;
    font-size: 14px;
    color: #999;
}

.author-pagination {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}

/* Empty state */
.author-no-reviews {
    text-align: center;
    padding: 60px 20px;
}

.author-no-reviews-text {
    font-size: 18px;
    color: #666;
}

@media (max-width: 767px) {
    .author-reviews-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .customer-description {
        margin-left: 0;
        margin-top: 20px;
        margin-bottom: 0px;
        text-align: center;
    }

    .customer-name {
        font-size: 24px;
        text-align: center;
    }

    .customer-profile-image {
        width: 50%;
    }

    .customer-profile-photo {
        height: 130px;
        width: 130px;
    }

    .customer-profile-flex {
        gap: 20px;
        flex-direction: column;
    }

    .customer-review-count {
        text-align: center;
    }

}

