/* THÊM MỚI: Style cho nút xem thêm */
.pray-wat-load-more-replies {
    background: #f1f1f1;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    line-height: normal;
    max-width: 100%;
    min-height: 3.0em;
    font-size: 16px;
    text-transform: math-auto;
    position: relative;
    margin: 0;
}

.pray-wat-load-more-replies:hover {
    background: #e1e1e1;
}

.pray-wat-load-more-replies i {
    font-size: 14px;
}

/* THÊM MỚI: Style cho trạng thái loading */
.pray-wat-load-more-replies:disabled {
    opacity: 0.7;
    cursor: wait;
}

.pray-wat-load-more-replies .fa-spin {
    animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pray-wat-reply.child-reply {
    padding-left: 0 !important;
}