/* Admin Comments Styling for Reviews and Replies */

/* Review status indicator */
.comment-review-status {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.comment-review-status.review {
    background-color: #e3f2fd;
    color: #1976d2;
    border: 1px solid #bbdefb;
}

.comment-review-status.reply {
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #e0e0e0;
    font-style: italic;
}

/* Rating column styling */
.column-adqs_ratings {
    width: 100px;
}

.column-adqs_ratings .qsd-stars {
    margin: 0;
}

.column-adqs_ratings .qsd-stars .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

/* Comment text prefixes */
.comment-text-prefix {
    display: inline-block;
    margin-right: 8px;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
}

.comment-text-prefix.review {
    background-color: #e3f2fd;
    color: #1976d2;
}

.comment-text-prefix.reply {
    background-color: #f5f5f5;
    color: #666;
    font-style: italic;
}

/* Row actions styling */
.row-actions .review-status,
.row-actions .reply-status {
    color: #666;
    font-size: 11px;
}

/* Comment list table improvements */
.wp-list-table .comment .column-comment {
    position: relative;
}

.wp-list-table .comment .column-comment .comment-text {
    margin-top: 5px;
}

/* Indent replies */
.comment.reply-to-review {
    margin-left: 20px;
    border-left: 3px solid #e0e0e0;
    padding-left: 10px;
}

/* Hover effects */
.comment:hover .comment-review-status {
    opacity: 0.8;
}
