/* engagement.css - Styles for likes and replies */

.post-engagement {
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0;
}

.comment {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
}

.comment.reply {
    background-color: #e9ecef;
}

.comment-header strong {
    color: #212529;
}

.comment-body {
    color: #495057;
    line-height: 1.6;
}

.comment-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.comment-actions .btn-link {
    padding: 0;
    text-decoration: none;
    color: #6c757d;
}

.comment-actions .btn-link:hover {
    color: #495057;
}

.comment-actions .btn-link.liked {
    color: #dc3545;
}

.like-icon {
    transition: transform 0.2s ease;
}

.btn:hover .like-icon {
    transform: scale(1.2);
}

.reply-form {
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

.replies {
    border-left: 3px solid #dee2e6;
}

/* Authenticated user controls */
body[data-authenticated="false"] .post-engagement button:disabled {
    cursor: not-allowed;
}