.bhv-feed-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.bhv-feed-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(
        to right,
        var(--text-sub),
        transparent
    );
    opacity: 0.4;
}
.bhv-feed-box {
    background: var(--card-bg);
        padding: 20px;
        border-radius: var(--radius);
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow);
        margin-bottom: 20px;
}

.bhv-feed-box textarea {
    width: 100%;
    border-radius: 6px;
    padding: 8px;
    border: 1px solid var(--text-sub);
        background: var(--card-bg);
            padding: 20px;
            box-shadow: var(--shadow);
            margin-bottom: 20px;
            color: var(--text-main);
}

.bhv-feed-box button {
    margin-top: 8px;
    padding: 6px 12px;
    border: none;
    background: #1877f2;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.bhv-feed-item {
    background: var(--card-bg);
        padding: 20px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        margin-bottom: 20px;
}

.bhv-feed-header {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bhv-feed-header img {

    border-radius: 50%;
        width: 48px;
    height: 48px;
    object-fit: cover;
    background: #eee;
}

.bhv-time {
    font-size: 12px;
    color: #777;
}

.bhv-feed-content {
    margin: 10px 0;
    font-size: 15px;
}
.bhv-feed-actions {
    font-size: 14px;
    color: #65676b;
    cursor: pointer;
}
.bhv-load-more-comments {
    cursor: pointer;
}
.bhv-comment {
    display: flex;
    margin-bottom: 8px;
}

.bhv-comment-body {
    border-radius: 12px;
    padding: 6px 10px;
    width:100%
}

.bhv-comment-author {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.bhv-comment-text {
    font-size: 14px;
    line-height: 1.4;
}

.bhv-comment-actions {
    margin-top: 4px;
    font-size: 12px;
    color: #65676b;
    cursor: pointer;
}

.bhv-reply-btn:hover {
    text-decoration: underline;
}

.bhv-mention {
}
.bhv-comment-form {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}
.bhv-comment-avatar{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.bhv-comment-form input {
    flex: 1;
    border-radius: 18px;
    border: 1px solid #ddd;
    padding: 6px 12px;
    font-size: 14px;
}

.bhv-comment-submit {
    border: none;
    background: #1877f2;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 14px;
}

.bhv-comment-submit:hover {
    background: #166fe5;
}

/* Tùy chỉnh khung nhập liệu (Textarea) */
.bhv-edit-comment-area,.bhv-edit-area {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border: 1.5px solid #e1e8ed;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    resize: none; /* Chống kéo giãn lung tung làm hỏng layout */
    transition: all 0.3s ease; /* Hiệu ứng mượt mà */
    outline: none;
    box-sizing: border-box;
}

/* Hiệu ứng khi nhấn vào textarea */
.bhv-edit-comment-area:focus,.bhv-edit-area:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
}

/* Nút "Lưu" hiện đại */
.bhv-save-comment,.bhv-save-feed {
    margin-top: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s active;
    display: block;
    width: 100%; /* Hoặc để auto tùy ý */
}

/* Hiệu ứng khi di chuột vào nút */
.bhv-save-comment:hover,.bhv-save-feed:hover {
    background-color: #0056b3;
}

/* Hiệu ứng khi nhấn nút */
.bhv-save-comment:active,.bhv-save-feed:active {
    transform: scale(0.98);
}