.user-rating { margin: 10px 0; font-size: 14px; color: #666; }
.view-reviews-btn { background: none; border: 1px solid #009688; color: #009688; border-radius: 16px; padding: 4px 12px; margin-left: 10px; cursor: pointer; }
.leave-review-btn { background: #009688; color: white; border: none; border-radius: 24px; padding: 8px 16px; cursor: pointer; margin-top: 10px; }
.reviews-list {
    padding: 16px;
}
.review-item {
    background: white;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.review-author {
    font-weight: bold;
}
.review-stars {
    color: #ffb021;
}
.review-ad {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}
.review-comment {
    line-height: 1.5;
    margin-bottom: 8px;
}
.review-date {
    font-size: 12px;
    color: #999;
    text-align: right;
}