        /* Sección de comentarios */
        .comments-section {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .comments-heading {
            font-size: 1.4rem;
            margin-top: 0;
            padding-bottom: 10px;
            border-bottom: 1px solid #e2e8f0;
            color: #2d3748;
        }
        
        .comment {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .comment-header {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            background-color: #e2e8f0;
        }
        
        .username {
            font-weight: 600;
            color: #3182ce;
        }
        
        .comment-date {
            font-size: 0.8rem;
            color: #718096;
            margin-left: 10px;
        }
        
        .comment-text {
            color: #4a5568;
            line-height: 1.5;
        }
        
        .comment-actions {
            margin-top: 8px;
            display: flex;
            gap: 15px;
            font-size: 0.85rem;
            color: #718096;
        }
        
        .comment-action {
            cursor: pointer;
        }
        
        .comment-action:hover {
            color: #3182ce;
        }
        
        .highlighted {
            background-color: #fffde7;
            padding: 10px;
            border-left: 4px solid #ffd600;
        }
