/**COMMENT CSS**/
#comments .cmmnt .replies {margin-left: -30px;}
#comments .cmmnt .cmmnt-content p{
  margin-left: -60px;
}

.hidden-comment { display: none; }

/* Styling cho các nút */
.show-more, .show-less {
    cursor: pointer;
    margin: 5px 10px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid;
}

/* Nút "Xem thêm" - màu xanh dương */
.show-more {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-color: #007bff;
    box-shadow: 0 2px 4px rgba(0,123,255,0.2);
}

.show-more:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}

/* Nút "Ẩn bớt" - màu cam */
.show-less {
    background: linear-gradient(135deg, #fd7e14, #e55a0a);
    color: white;
    border-color: #fd7e14;
    box-shadow: 0 2px 4px rgba(253,126,20,0.2);
}

.show-less:hover {
    background: linear-gradient(135deg, #e55a0a, #cc5500);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(253,126,20,0.3);
}

/* Loading */
.loading {
    text-align: center;
    padding: 15px;
    color: #6c757d;
    font-style: italic;
}

/* Animation cho comment */
.loaded-comment {
    animation: slideInUp 0.6s ease-out;
    opacity: 0;
    transform: translateY(20px);
}

.loaded-comment.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hiệu ứng fade out */
.comment-fade-out {
    animation: fadeOutDown 0.5s ease-in forwards;
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}
@media (max-width: 480px){
  #comments .cmmnt .replies {margin-left: -50px!important;}
}
