/* Reply item container (from Review_Replies) */
.review-reply-container {
    margin-left: 40px;
    border-left: 2px solid #e9ecef;
    padding-left: 12px;
    margin-top: 8px;
}

/* Row layout */
.container-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

/* Profile photo */
.profile {
    flex-shrink: 0;
    width: 36px;
}

.profile .img img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

/* Content column */
.container-row .content {
    flex: 1;
    min-width: 0;
}

/* Meta row */
.meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.meta .name {
    font-weight: 600;
    color: #212529;
}

.meta .time {
    color: #6c757d;
}

.meta .bullet {
    color: #adb5bd;
    font-size: 10px;
}

/* Review text */
.review-box .review {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
    word-break: break-word;
}

/* Feedback buttons row */
.feedback {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    align-items: center;
}

.feedback .btn-feedback {
    font-size: 0.8rem;
    color: #6c757d;
    padding: 2px 6px;
}

.feedback .btn-feedback.selected {
    color: #0d6efd;
}

.feedback .btn-feedback .tm-heart.text-danger {
    color: #dc3545 !important;
}

/* Reply input box (inside gen_load_replies_block) — merged */
.reply-review-container {
    width: 100%;
    margin-top: 8px;
    margin-left: 0;
}

.reply-review-container .editor {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 8px;
    min-height: 60px;
    font-size: 0.9rem;
}

.reply-review-container .editor .textarea:empty:before {
    content: attr(placeholder);
    color: #adb5bd;
}

/* Full-width reply section */
.review-item.list-group-item {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    overflow: visible;
}

.review-item .reply-main-container {
    width: 100%;
    margin-top: 8px;
    box-sizing: border-box;
}

.reply-container,
.reply-cont,
.reply-cont .list-group {
    width: 100%;
}

.review-rating { white-space: nowrap; }