/* Estilos para comentarios anidados */
.comment-thread {
    position: relative;
}

.comment-main {
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
}

.replies-container {
    position: relative;
    padding-left: 2px;
}

.replies-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e0e0e0;
    border-radius: 1px;
}

.comment-reply {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 8px;
    margin-left: 16px;
}

.toggle-replies {
    position: relative;
    padding-left: 24px !important;
}

.toggle-replies .fa-comment-dots {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.toggle-replies.active {
    color: #0d6efd !important;
}

.reply-count {
    margin-left: 4px;
}

.reply-form {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 8px;
}

.comment-actions {
    opacity: 0.8;
    transition: opacity 0.2s;
}

.comment-main:hover .comment-actions,
.comment-reply:hover .comment-actions {
    opacity: 1;
}

/* Animaciones */
.replies-container {
    transition: all 0.3s ease-in-out;
}

.reply-form {
    transition: all 0.2s ease-in-out;
}

/* Responsive */
@media (max-width: 576px) {
    .replies-container {
        margin-left: 8px !important;
    }
    
    .comment-reply {
        margin-left: 8px;
    }
} 