/* ============================================================
   1. BỐ CỤC CHUNG & LAYOUT
   ============================================================ */
.bce-community-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1c1e21;
    
    /* [FIX MOBILE PADDING] Thêm đệm 2 bên để không bị sát mép */
    padding: 0 15px; 
    box-sizing: border-box;
}

.bce-community-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    
    /* [FIX RESPONSIVE] Cho phép xuống dòng và tạo khoảng cách */
    flex-wrap: wrap; 
    gap: 15px; 
}

.bce-community-header h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #1c1e21;
    flex-shrink: 0; /* Đảm bảo tiêu đề không bị co quá mức */
}

.bce-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bce-header-link {
    text-decoration: none;
    color: #65676b;
    font-weight: 600;
    font-size: 14px;
}

.bce-header-link:hover {
    color: #0073aa;
}

.bce-main-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.bce-community-nav { 
    width: 20%;
    min-width: 180px;
}

.bce-community-feed { 
    flex-grow: 1;
    min-width: 300px;
}

.bce-community-sidebar { 
    width: 25%;
    min-width: 200px;
}

/* ============================================================
   2. NHÓM XU HƯỚNG (TRENDING GROUPS) & SLIDER
   ============================================================ */
/* BỐ CỤC CHUNG 2 CỘT */
.bce-trending-section-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
    align-items: flex-start;
}

.bce-trending-col-left,
.bce-trending-col-right {
    width: 50%;
    min-width: 0;
}

.bce-trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.bce-trending-header h3 {
    font-size: 18px; 
    margin: 0;
    font-weight: 700;
    color: #050505;
}

.bce-empty-state {
    color: #65676b;
    font-style: italic;
    font-size: 14px;
}

/* GRID NHÓM (3 CỘT) */
.bce-trending-groups-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.bce-trending-groups-grid .bce-group-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    border: 1px solid #f0f2f5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    transition: box-shadow 0.2s;
}

.bce-trending-groups-grid .bce-group-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.bce-trending-groups-grid .bce-group-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.bce-trending-groups-grid .bce-group-card-info h4 {
    font-size: 14px;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
}

.bce-trending-groups-grid .bce-group-card-info h4 a {
    text-decoration: none;
    color: #050505;
}

.bce-trending-groups-grid .bce-group-card-info span {
    font-size: 12px;
    color: #65676b;
}

/* GALLERY SLIDER */
.bce-gallery-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 2px;
}

.bce-gallery-slider-track {
    display: flex;
    transform: translateX(0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.bce-gallery-slide {
    width: 33.3333%;
    flex-shrink: 0;
    padding: 0 4px;
    box-sizing: border-box;
}

.bce-gallery-slide a {
    display: block;
    position: relative;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
}

.bce-gallery-slide img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.bce-gallery-slide a:hover img {
    transform: scale(1.05);
}

.bce-slide-author {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 20px 8px 8px 8px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bce-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    font-size: 20px;
    color: #1c1e21;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.2s;
    padding-bottom: 4px;
    line-height: 1;
}

.bce-slider-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.bce-slider-nav:disabled {
    opacity: 0;
    cursor: default;
}

.bce-slider-prev { left: 5px; }
.bce-slider-next { right: 5px; }

/* ============================================================
   3. FEED BÀI VIẾT (POST ITEMS)
   ============================================================ */
.bce-post-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 15px 10px 15px;
    margin-bottom: 15px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.bce-post-item-header { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 12px; 
}

.bce-post-item-author-name { 
    font-weight: 600; 
    color: #050505;
    font-size: 15px;
}

.bce-post-item-badge { 
    background: #e4e6eb; 
    padding: 2px 6px; 
    border-radius: 4px; 
    font-size: 11px; 
    font-weight: 600;
    color: #050505;
    text-transform: uppercase;
}

.bce-post-item-title { 
    font-size: 18px; 
    margin: 0 0 8px; 
    font-weight: 600;
    line-height: 1.3;
}

.bce-post-item-title a {
    text-decoration: none;
    color: #050505;
}

.bce-post-item-title a:hover {
    text-decoration: underline;
}

.bce-post-item-content { 
    color: #050505; 
    margin-bottom: 12px; 
    line-height: 1.5;
    font-size: 15px;
}

/* STYLE CHO THẺ TAGS (Hashtag) */
.bce-post-tags-list {
    margin-bottom: 12px;
}
.bce-hashtag {
    display: inline-block;
    transition: background-color 0.2s ease;
}
.bce-hashtag:hover {
    background-color: #d0e4f7 !important;
    text-decoration: none !important;
}

/* Gallery Grid (Lưới ảnh) */
.bce-post-image-gallery, 
.post-item-gallery {
    margin: 10px -15px 15px -15px;
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 2px;
    background: #fff;
}

.bce-gallery-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Vuông 1:1 */
    background: #f0f2f5;
    overflow: hidden;
}

.bce-gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.bce-gallery-image:hover img {
    transform: scale(1.02);
}

/* Footer bài viết */
.bce-post-item-footer { 
    display: flex; 
    gap: 5px; 
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f0f2f5;
    justify-content: space-between;
}

.bce-post-item-footer button { 
    background: none; 
    border: none; 
    cursor: pointer; 
    color: #65676b;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s;
    flex: 1;
}

.bce-post-item-footer button:hover {
    background-color: #f0f2f5;
}

/* CĂN GIỮA NÚT LIKE & BOOKMARK TUYỆT ĐỐI */
.bce-like-btn, 
.bce-bookmark-btn,
.bce-reply-btn {
    display: inline-flex !important;  /* Dùng Flexbox */
    align-items: center !important;   /* Căn giữa chiều dọc */
    justify-content: center !important; /* Căn giữa chiều ngang */
    gap: 6px !important;              /* Khoảng cách giữa Icon và Số */
    vertical-align: middle !important;
    line-height: 1 !important;
}

.bce-like-btn i, 
.bce-like-btn span:first-child { 
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    transform: none !important; 
}

/* Chỉnh lại font size cho icon trái tim */
.bce-like-btn {
    font-size: 15px !important; 
}

/* Màu khi Active */
.bce-like-btn.liked { color: #d9534f !important; }
.bce-bookmark-btn.bookmarked { color: #5cb85c !important; }

/* Số đếm */
.bce-like-count,
.bce-like-text {
    font-size: 14px !important;
    font-weight: 600 !important;
    display: inline-block !important;
    padding-top: 1px !important; /* Tinh chỉnh nhỏ để khớp với icon */
}

/* ============================================================
   4. FORM ĐĂNG BÀI MỚI (MAIN FORM)
   ============================================================ */
.bce-post-form-wrapper {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.bce-post-form-wrapper h3 {
    margin-top: 0;
    border-bottom: 1px solid #f0f2f5;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.bce-post-form-wrapper .form-row { margin-bottom: 15px; }
.bce-post-form-wrapper label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.bce-post-form-wrapper input[type="text"],
.bce-post-form-wrapper select,
.bce-post-form-wrapper textarea {
    width: 100%; padding: 10px; box-sizing: border-box; border: 1px solid #ddd; border-radius: 6px; font-size: 14px;
}
.bce-post-form-wrapper textarea { min-height: 120px; }
.bce-post-form-message { padding: 10px; border-radius: 4px; margin-top: 10px; display: none; font-size: 14px; }
.bce-post-form-message.success { background: #e7f3ff; color: #1877f2; }
.bce-post-form-message.error { background: #ffebe8; color: #d93025; }
.bce-post-form-wrapper .form-actions { display: flex; gap: 10px; justify-content: flex-end; }

#bce-image-previews { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.bce-preview-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; border: 1px solid #ddd; }

/* ============================================================
   5. SIDEBAR
   ============================================================ */
.bce-sidebar-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}
.bce-sidebar-widget h4 { margin-top: 0; margin-bottom: 12px; font-size: 16px; font-weight: 600; }
.bce-sidebar-widget ul, .bce-sidebar-widget ol { padding-left: 20px; margin: 0; }
.bce-sidebar-widget li { margin-bottom: 8px; color: #65676b; }
.bce-sidebar-widget a { text-decoration: none; color: #0073aa; }
.bce-sidebar-widget .tags-container { display: flex; flex-wrap: wrap; gap: 8px; }
.bce-sidebar-widget .bce-tag-item { background: #f0f2f5; padding: 6px 12px; border-radius: 15px; font-size: 13px; text-decoration: none; color: #050505; font-weight: 500; }
.bce-sidebar-widget .bce-tag-item:hover { background: #e4e6eb; }

/* ============================================================
   6. LIGHTBOX FACEBOOK STYLE
   ============================================================ */
.bce-lightbox-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.95); z-index: 99999;
    display: flex; align-items: center; justify-content: center;
}
.bce-lightbox-close-btn {
    position: absolute; top: 15px; left: 15px;
    background: rgba(255,255,255,0.15); color: #fff; border: none;
    width: 40px; height: 40px; border-radius: 50%; font-size: 24px;
    cursor: pointer; z-index: 100000; display: flex; justify-content: center; align-items: center;
    transition: background 0.2s;
}
.bce-lightbox-close-btn:hover { background: rgba(255,255,255,0.3); }
.bce-lightbox-container { display: flex; width: 100%; height: 100%; overflow: hidden; }

/* CỘT TRÁI: ẢNH */
.bce-lightbox-left {
    flex: 1; background-color: #000; display: flex; align-items: center; justify-content: center; position: relative; min-width: 0;
}
.bce-lightbox-left img { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 0 20px rgba(0,0,0,0.8); }
.bce-lightbox-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background-color: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.2);
    width: 48px; height: 48px; border-radius: 50%; font-size: 28px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease; z-index: 100001; outline: none; line-height: 1; padding-bottom: 4px;
}
.bce-lightbox-nav-btn:hover { background-color: rgba(255,255,255,0.3); transform: translateY(-50%) scale(1.1); }
.bce-lightbox-prev { left: 20px; }
.bce-lightbox-next { right: 20px; }
.bce-nav-hidden { display: none !important; }

/* CỘT PHẢI: THÔNG TIN */
.bce-lightbox-right {
    width: 360px; background-color: #fff; display: flex; flex-direction: column;
    flex-shrink: 0; border-left: 1px solid #333; position: relative;
}
.bce-lightbox-scroll-area {
    flex-grow: 1; overflow-y: auto; padding: 20px 20px 80px 20px; display: flex; flex-direction: column; scrollbar-width: thin;
}
.bce-lightbox-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; color: #65676b; border-bottom: 1px solid #f0f2f5; padding-bottom: 12px; }
.bce-lightbox-title { margin-top: 0; font-size: 16px; font-weight: 600; line-height: 1.3; margin-bottom: 8px; color: #050505; }
.bce-lightbox-content { font-size: 14px; line-height: 1.5; color: #050505; margin-bottom: 10px; }

/* Action Bar Lightbox */
.bce-lightbox-actions-bar {
    display: flex; gap: 15px; padding: 8px 0; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; margin-top: 10px; margin-bottom: 10px;
}
.bce-lightbox-actions-bar button {
    background: none; border: none; cursor: pointer; color: #65676b; font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 4px; transition: background 0.2s;
}
.bce-lightbox-actions-bar button:hover { background-color: #f0f2f5; }

/* Input Area (Fixed Bottom) */
.bce-lightbox-input-area {
    position: absolute; bottom: 0; left: 0; width: 100%; background: #fff; padding: 12px 16px; border-top: 1px solid #ddd; box-sizing: border-box; z-index: 10; box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
}
#bce-lightbox-reply-form { display: flex; gap: 8px; align-items: center; }
#bce-lightbox-reply-form input {
    flex-grow: 1; padding: 10px 15px; border-radius: 20px; border: 1px solid #ccd0d5; background: #f0f2f5; outline: none; font-size: 14px; transition: background 0.2s;
}
#bce-lightbox-reply-form input:focus { background: #fff; }
#bce-lightbox-reply-form button { background: none; border: none; color: #0084ff; font-size: 24px; cursor: pointer; padding: 0 5px; line-height: 1; }
#bce-lightbox-reply-form button:disabled { color: #bec3c9; cursor: default; }

/* ============================================================
   7. BÌNH LUẬN (FACEBOOK TREE STYLE)
   ============================================================ */

/* Reset Style cũ của reply item */
.bce-reply-item {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    position: relative;
}

/* 1. Avatar */
.bce-reply-avatar-col {
    flex-shrink: 0;
    z-index: 2; 
}
.bce-reply-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* 2. Cột Nội dung */
.bce-reply-body-col {
    flex-grow: 1;
    min-width: 0;
}

/* 3. Bong bóng (Bubble) */
.bce-comment-bubble {
    background-color: #f0f2f5;
    border-radius: 18px;
    padding: 8px 12px;
    display: inline-block; 
    position: relative;
}

.bce-comment-author {
    font-weight: 600;
    font-size: 13px;
    color: #050505;
    margin-bottom: 2px;
}
.bce-badge-icon { font-size: 12px; margin-left: 4px; cursor: help; }

.bce-comment-text {
    font-size: 15px;
    color: #050505;
    line-height: 1.4;
    word-wrap: break-word;
}

/* 4. Action Bar */
.bce-comment-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    margin-left: 12px; 
    font-size: 12px;
    color: #65676b;
}

.bce-comment-actions button {
    background: none; border: none; padding: 0;
    font-weight: 600; font-size: 12px;
    color: #65676b; cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.bce-comment-actions button:hover { text-decoration: underline; }
.bce-comment-actions .bce-like-btn.liked { color: #d9534f; }
.bce-comment-time { color: #65676b; font-weight: 400; }

/* 5. Form Trả lời lồng nhau */
.bce-reply-form-container {
    margin-top: 10px;
    margin-left: 10px;
}

/* --- LOGIC ĐƯỜNG KẺ NỐI (CONNECTOR LINES) --- */
.bce-reply-children {
    margin-top: 8px;
    margin-left: 32px; /* Thụt vào bằng chiều rộng Avatar cha */
    padding-left: 0; 
    position: relative;
}

.bce-reply-children .bce-reply-item {
    position: relative;
    padding-left: 0;
}

.bce-reply-children .bce-reply-avatar-img {
    width: 24px;
    height: 24px;
}

/* ĐƯỜNG CONG (CURVE L) */
.bce-reply-children .bce-reply-item::before {
    content: "";
    position: absolute;
    top: 0; 
    left: -28px;
    width: 28px;
    height: 12px;
    border-left: 2px solid #e5e5e5;
    border-bottom: 2px solid #e5e5e5;
    border-bottom-left-radius: 12px;
    z-index: 1;
}

/* ĐƯỜNG DỌC NỐI DÀI */
.bce-reply-children .bce-reply-item::after {
    content: "";
    position: absolute;
    top: -100%;
    bottom: 12px;
    left: -28px;
    width: 2px;
    background: #e5e5e5;
    z-index: 1;
}

.bce-reply-children > .bce-reply-item:first-child::after {
    top: -15px;
}

/* ============================================================
   8. [NÂNG CẤP MỚI] FORM TRẢ LỜI FACEBOOK STYLE
   ============================================================ */
.bce-reply-box-layout {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.bce-reply-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.bce-reply-input {
    width: 100%;
}

.bce-reply-input textarea {
    width: 100%;
    border-radius: 18px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    background-color: #f0f2f5;
    resize: none;
    overflow: hidden;
    min-height: 40px;
    line-height: 20px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.2s;
    box-sizing: border-box;
}

.bce-reply-input textarea:focus {
    background-color: #fff;
    border-color: #ccd0d5;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.bce-reply-input .button-small {
    font-size: 12px;
    padding: 4px 10px;
    min-height: 28px;
    line-height: 1;
}

/* ============================================================
   9. RESPONSIVE MOBILE
   ============================================================ */
@media (max-width: 768px) {
    /* [FIX HEADER] Chuyển thành cột dọc để tránh vỡ giao diện */
    .bce-community-header-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bce-header-actions {
        width: 100%;
        margin-top: 10px;
        justify-content: space-between; /* Căn đều 2 bên hoặc flex-start tùy ý */
    }

    .bce-main-layout { flex-direction: column; }
    .bce-community-nav, .bce-community-feed, .bce-community-sidebar { width: 100%; }
    
    .bce-trending-section-wrapper {
        flex-direction: column;
        gap: 25px;
    }
    
    .bce-trending-col-left, 
    .bce-trending-col-right {
        width: 100%;
    }
    
    .bce-trending-groups-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bce-gallery-slide {
        width: 40%; 
    }
    
    /* Lightbox Mobile */
    .bce-lightbox-container { flex-direction: column; }
    .bce-lightbox-left { flex: none; height: 40vh; }
    .bce-lightbox-right { width: 100%; height: 60vh; border-left: none; border-top: 1px solid #333; }
    .bce-lightbox-close-btn { top: 10px; left: 10px; width: 32px; height: 32px; font-size: 20px; }
    .bce-lightbox-nav-btn { width: 36px; height: 36px; font-size: 20px; }
    .bce-lightbox-prev { left: 10px; }
    .bce-lightbox-next { right: 10px; }
}

/* FIX Select2 Color */
.bce-post-form-wrapper .select2-container--default .select2-search--inline .select2-search__field,
.select2-container--default .select2-search--dropdown .select2-search__field {
    color: #333 !important;
}

/* ============================================================
   FIX GIAO DIỆN (THEME OVERRIDE)
   ============================================================ */

/* 1. Fix Avatar bị méo -> Ép tròn tuyệt đối */
.bce-reply-avatar img,
.bce-post-avatar-wrapper img,
.bce-reply-avatar-col img,
.bce-post-detail-avatar img {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important; /* Ngăn không cho bị bóp méo chiều ngang */
    min-height: 32px !important; /* Ngăn không cho bị bóp méo chiều dọc */
    border-radius: 50% !important;
    object-fit: cover !important; /* Cắt ảnh để vừa khung tròn mà không bị dẹt */
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Riêng avatar ở bài post và detail thì to hơn chút (40px) */
.bce-post-avatar-wrapper img {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
}
.bce-post-detail-avatar img {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
}

/* 2. Fix Nút Gửi (Submit Button) */
.bce-reply-form button[type="submit"] {
    color: #000 !important;          /* Chữ đen */
    border: 1px solid #000 !important; /* Viền đen */
    background: #fff !important;       /* Nền trắng */
    border-radius: 15px !important;
    padding: 4px 15px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    box-shadow: none !important;
    text-transform: none !important;
    line-height: normal !important;
    margin-top: 5px !important;
}

/* Hover vào thì màu xám */
.bce-reply-form button[type="submit"]:hover {
    background-color: #e4e6eb !important; /* Màu xám nhạt */
    color: #000 !important;
}

/* Trạng thái disabled (khi đang gửi) */
.bce-reply-form button[type="submit"]:disabled {
    border-color: #ccc !important;
    color: #ccc !important;
    background: #f0f2f5 !important;
}